index.html 1.0 KB

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="">
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- 针对IE浏览器的特殊配置,含义是让IE浏览器以最高的渲染级别渲染页面 -->
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <!-- 开启移动端的理想视口 -->
  8. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  9. <!-- 配置页签图标 -->
  10. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  11. <!-- 引入第三方样式 -->
  12. <link rel="stylesheet" href="<%= BASE_URL %>css/bootstrap.css">
  13. <!-- 配置网页的标题 -->
  14. <title><%= htmlWebpackPlugin.options.title %></title>
  15. </head>
  16. <body>
  17. <!-- 当浏览器不支持js时,noscript标签中的元素就会被渲染 -->
  18. <noscript>
  19. <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  20. </noscript>
  21. <!-- 容器 -->
  22. <div id="app"></div>
  23. <!-- built files will be auto injected -->
  24. </body>
  25. </html>