rename bundles folder into assets

This commit is contained in:
Sebastian Sdorra
2019-10-08 08:36:53 +02:00
parent 03b10b8c5f
commit 8f8072d760
13 changed files with 16 additions and 15 deletions

View File

@@ -58,7 +58,7 @@ module.exports = {
]
},
output: {
path: path.resolve(__dirname, "..", "target", "bundles"),
path: path.resolve(__dirname, "..", "target", "assets"),
filename: "[name].bundle.js"
},
devServer: {
@@ -77,6 +77,6 @@ module.exports = {
};
app.use(createIndexMiddleware(templatePath, renderParams));
},
publicPath: '/bundles/'
publicPath: '/assets/'
}
};