Loading

Vue2.x index.html文件解析

<!DOCTYPE html>
<html lang="">
  <head>
    <meta charset="utf-8">
<!--      针对IE浏览器的一个特殊配置,含义时让IE浏览器以最高的渲染级别渲染界面-->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--      开启移动端理想视口-->
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
<!--      配置页签图标-->
<!--      <%= BASE_URL %>相当于./   -->
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<!--      配置网页标题-->
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>
  <body>
<!--  当浏览器不支持js时noscript中的元素就会被渲染-->
    <noscript>
      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
    </noscript>
<!--容器-->
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

posted @ 2021-10-09 15:42  IamHzc  阅读(275)  评论(0编辑  收藏  举报