mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2025-09-10 22:43:50 +02:00
Merge pull request #6284 from thornbill/exclude-files
Exclude unneeded files from build output
This commit is contained in:
@@ -73,8 +73,7 @@ const config = {
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: 'themes/',
|
||||
to: 'themes/'
|
||||
from: 'themes/**/*.css'
|
||||
},
|
||||
{
|
||||
from: 'assets/**',
|
||||
@@ -87,7 +86,13 @@ const config = {
|
||||
from: '*.*',
|
||||
globOptions: {
|
||||
dot: true,
|
||||
ignore: ['**.js', '**.html']
|
||||
ignore: [
|
||||
'**.js',
|
||||
'**.jsx',
|
||||
'**.html',
|
||||
'**.ts',
|
||||
'**.tsx'
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user