Rename /examples folder to /static

This commit is contained in:
Paul Laros
2020-09-28 14:03:18 +02:00
parent aed40e529c
commit a985402a23
3 changed files with 4 additions and 5 deletions
-1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -53,10 +53,10 @@ module.exports = {
}),
// Speed up webpack build
new HardSourceWebpackPlugin(),
// Copy dist folder to examples
// Copy dist folder to static
new FileManagerPlugin({
onEnd: {
copy: [{ source: "./dist/**/*", destination: "./examples" }]
copy: [{ source: "./dist/**/*", destination: "./static" }]
}
})
],
@@ -116,7 +116,7 @@ module.exports = {
}
},
devServer: {
contentBase: Path.join(__dirname, "examples"),
contentBase: Path.join(__dirname, "static"),
compress: true,
port: 8080,
open: true