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 c5cc093

Browse files
authoredNov 1, 2024
Merge pull request jellyfin#6284 from thornbill/exclude-files
Exclude unneeded files from build output
2 parents 6d37cfc + 1761dd1 commit c5cc093

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.