We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c16fe9 commit 600e264Copy full SHA for 600e264
webpack.common.js
@@ -73,8 +73,7 @@ const config = {
73
new CopyPlugin({
74
patterns: [
75
{
76
- from: 'themes/',
77
- to: 'themes/'
+ from: 'themes/**/*.css'
78
},
79
80
from: 'assets/**',
@@ -87,7 +86,13 @@ const config = {
87
86
from: '*.*',
88
globOptions: {
89
dot: true,
90
- ignore: ['**.js', '**.html']
+ ignore: [
+ '**.js',
91
+ '**.jsx',
92
+ '**.html',
93
+ '**.ts',
94
+ '**.tsx'
95
+ ]
96
}
97
98
]
0 commit comments