2020-06-15 18:24:31 +08:00
<!DOCTYPE html>
2020-07-31 22:22:10 +08:00
< html lang = "en" class = "beauty-scroll" >
2020-06-15 18:24:31 +08:00
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width,initial-scale=1.0" >
< link rel = "icon" href = "<%= BASE_URL %>favicon.ico" >
2020-10-06 20:27:35 +08:00
< title > < %= process.env.VUE_APP_NAME %>< / title >
2020-09-15 00:02:53 +08:00
<!-- require cdn assets css -->
< % for (var i in htmlWebpackPlugin.options.cdn & & htmlWebpackPlugin.options.cdn.css) { %>
< link rel = "stylesheet" href = "<%= htmlWebpackPlugin.options.cdn.css[i] %>" / >
< % } %>
2020-06-15 18:24:31 +08:00
< / head >
2020-11-28 23:07:12 +08:00
< body >
2020-06-15 18:24:31 +08:00
< noscript >
< strong > We're sorry but < %= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.< / strong >
< / noscript >
2020-11-28 23:07:12 +08:00
< div class = "beauty-scroll" style = "height: 100vh; overflow-y: scroll" >
< div id = "app" > < / div >
< / div >
2020-09-15 00:02:53 +08:00
<!-- require cdn assets js -->
< % for (var i in htmlWebpackPlugin.options.cdn & & htmlWebpackPlugin.options.cdn.js) { %>
< script type = "text/javascript" src = "<%= htmlWebpackPlugin.options.cdn.js[i] %>" > < / script >
< % } %>
2020-06-15 18:24:31 +08:00
<!-- built files will be auto injected -->
< / body >
< / html >