|
5 | 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1">
|
7 | 7 | <title>{{ name }}</title>
|
8 |
| - <link rel="icon" type="image/png" sizes="32x32" href="/static/img/icons/favicon-32x32.png"> |
9 |
| - <link rel="icon" type="image/png" sizes="16x16" href="/static/img/icons/favicon-16x16.png"> |
| 8 | + <link rel="icon" type="image/png" sizes="32x32" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-32x32.png"> |
| 9 | + <link rel="icon" type="image/png" sizes="16x16" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-16x16.png"> |
10 | 10 | <!--[if IE]><link rel="shortcut icon" href="/static/img/icons/favicon.ico"><![endif]-->
|
11 | 11 | <!-- Add to home screen for Android and modern mobile browsers -->
|
12 |
| - <link rel="manifest" href="/static/manifest.json"> |
| 12 | + <link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath %>static/manifest.json"> |
13 | 13 | <meta name="theme-color" content="#4DBA87">
|
14 | 14 |
|
15 | 15 | <!-- Add to home screen for Safari on iOS -->
|
16 | 16 | <meta name="apple-mobile-web-app-capable" content="yes">
|
17 | 17 | <meta name="apple-mobile-web-app-status-bar-style" content="black">
|
18 | 18 | <meta name="apple-mobile-web-app-title" content="{{ name }}">
|
19 |
| - <link rel="apple-touch-icon" href="/static/img/icons/apple-touch-icon-152x152.png"> |
| 19 | + <link rel="apple-touch-icon" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/apple-touch-icon-152x152.png"> |
20 | 20 | <!-- Add to home screen for Windows -->
|
21 |
| - <meta name="msapplication-TileImage" content="/static/img/icons/msapplication-icon-144x144.png"> |
| 21 | + <meta name="msapplication-TileImage" content="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/msapplication-icon-144x144.png"> |
22 | 22 | <meta name="msapplication-TileColor" content="#000000">
|
23 | 23 | <% for (var chunk of webpack.chunks) {
|
24 | 24 | for (var file of chunk.files) {
|
|
0 commit comments