Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 600e264

Browse files
thornbillkevgrig
authored andcommittedJan 7, 2025
Backport pull request jellyfin#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 2c16fe9 commit 600e264

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.