Skip to content

Commit ce65063

Browse files
committed
Copy CSS to dist along with images
1 parent 489c64e commit ce65063

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

webpack.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ module.exports = {
3939
hash: true
4040
}),
4141
new CopyWebpackPlugin({
42-
patterns: [ { from: "./src/img", to: "./img" } ]
42+
patterns: [
43+
{ from: "./src/img", to: "./img" },
44+
{ from: "./src/css", to: "./css" }
45+
]
4346
}),
4447
new ExtensionManifestPlugin({
4548
config: {

0 commit comments

Comments
 (0)