| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="utf-8">
- <meta content="IE=edge" http-equiv="X-UA-Compatible">
- <meta content="width=device-width,initial-scale=1.0" name="viewport">
- <link href="./favicon.ico" rel="icon" type="image/x-icon">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <style>
- ::-webkit-scrollbar {
- width: 12px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 3px;
- background: rgba(0, 0, 0, 0.2);
- }
- body {
- margin: 0;
- min-width: 1200px;
- background: #f8f9fb;
- }
- </style>
- </head>
- <body>
- <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>
|