We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a641288 commit 2ebe3c1Copy full SHA for 2ebe3c1
public/index.html
@@ -7,10 +7,10 @@
7
<title>Svelte app</title>
8
9
<link rel='icon' type='image/png' href='favicon.png'>
10
- <link rel='stylesheet' href='bundle.css'>
+ <link rel='stylesheet' href='build/bundle.css'>
11
</head>
12
13
<body>
14
- <script src='bundle.js'></script>
+ <script src='build/bundle.js'></script>
15
</body>
16
</html>
webpack.config.js
@@ -6,7 +6,7 @@ const prod = mode === 'production';
6
module.exports = {
entry: {
- bundle: ['./src/main.js']
+ 'build/bundle': ['./src/main.js']
},
resolve: {
alias: {
0 commit comments