Webpack: copy files into /static instead of starting them there

This commit is contained in:
Alex Gleason
2021-09-03 13:06:04 -05:00
parent 71a6615219
commit bc759c87b2
14 changed files with 14 additions and 19 deletions

View File

@ -101,6 +101,12 @@ module.exports = {
}, {
from: join(__dirname, '../node_modules/emoji-datasource/img/twitter/sheets/32.png'),
to: join(output.path, 'emoji/sheet_13.png'),
}, {
from: join(__dirname, '../app/sounds'),
to: join(output.path, 'sounds'),
}, {
from: join(__dirname, '../app/instance'),
to: join(output.path, 'instance'),
}],
options: {
concurrency: 100,