added missing files to dist

This commit is contained in:
vitorsemeano 2020-10-22 01:10:40 +01:00
parent 6638c13e85
commit 19140f0459

View file

@ -15,13 +15,21 @@ module.exports = {
new CleanWebpackPlugin(), new CleanWebpackPlugin(),
new CopyPlugin({ new CopyPlugin({
patterns: [ patterns: [
{
from: 'config*.json',
to: ''
},
{ {
from: 'themes/', from: 'themes/',
to: 'themes/' to: 'themes/'
},
{
from: 'assets/**',
globOptions: {
ignore: ['**/css/*']
}
},
{
from: '*.*',
globOptions: {
ignore: ['**.js', '**.html']
}
} }
] ]
}) })