1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #6284 from thornbill/exclude-files

Exclude unneeded files from build output
This commit is contained in:
Bill Thornton 2024-11-01 14:20:12 -04:00 committed by GitHub
commit c5cc093fba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,8 +73,7 @@ const config = {
new CopyPlugin({ new CopyPlugin({
patterns: [ patterns: [
{ {
from: 'themes/', from: 'themes/**/*.css'
to: 'themes/'
}, },
{ {
from: 'assets/**', from: 'assets/**',
@ -87,7 +86,13 @@ const config = {
from: '*.*', from: '*.*',
globOptions: { globOptions: {
dot: true, dot: true,
ignore: ['**.js', '**.html'] ignore: [
'**.js',
'**.jsx',
'**.html',
'**.ts',
'**.tsx'
]
} }
} }
] ]