mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed issue with webpack production configuration.
This commit is contained in:
parent
867df3fab9
commit
b8fa6f123b
@ -33,11 +33,13 @@ module.exports = merge(common, {
|
||||
ignoreOrder: true,
|
||||
filename: "[name].[contenthash].css",
|
||||
}),
|
||||
new CopyWebpackPlugin([
|
||||
{
|
||||
from: path.resolve(__dirname, "assets"),
|
||||
to: path.resolve(__dirname, "dist/assets"),
|
||||
},
|
||||
]),
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: path.resolve(__dirname, "assets"),
|
||||
to: path.resolve(__dirname, "dist/assets"),
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user