Skip to content

Commit e4f7529

Browse files
thornbilljoshuaboniface
authored andcommittedNov 3, 2024
Backport pull request #6284 from jellyfin-web/release-10.10.z
Exclude unneeded files from build output Original-merge: c5cc093 Merged-by: thornbill <[email protected]> Backported-by: Joshua M. Boniface <[email protected]>
1 parent 8a6491d commit e4f7529

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

‎webpack.common.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ const config = {
7373
new CopyPlugin({
7474
patterns: [
7575
{
76-
from: 'themes/',
77-
to: 'themes/'
76+
from: 'themes/**/*.css'
7877
},
7978
{
8079
from: 'assets/**',
@@ -87,7 +86,13 @@ const config = {
8786
from: '*.*',
8887
globOptions: {
8988
dot: true,
90-
ignore: ['**.js', '**.html']
89+
ignore: [
90+
'**.js',
91+
'**.jsx',
92+
'**.html',
93+
'**.ts',
94+
'**.tsx'
95+
]
9196
}
9297
}
9398
]

0 commit comments

Comments
 (0)
Please sign in to comment.