Copy custom instance files into the build

This commit is contained in:
Alex Gleason
2022-03-05 14:38:21 -06:00
parent 7d8448c24b
commit ea0b6e7fff
3 changed files with 18 additions and 0 deletions

View File

@ -97,6 +97,13 @@ module.exports = {
}, {
from: join(__dirname, '../app/instance'),
to: join(output.path, 'instance'),
}, {
from: join(__dirname, '../custom/instance'),
to: join(output.path, 'instance'),
noErrorOnMissing: true,
globOptions: {
ignore: ['**/.gitkeep'],
},
}],
options: {
concurrency: 100,