mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2485 from jellyfin/fix-webpack-glob
Fix webpack globbing in hidden folder
This commit is contained in:
commit
c9c701cf65
1 changed files with 3 additions and 1 deletions
|
@ -44,12 +44,14 @@ module.exports = {
|
||||||
{
|
{
|
||||||
from: 'assets/**',
|
from: 'assets/**',
|
||||||
globOptions: {
|
globOptions: {
|
||||||
|
dot: true,
|
||||||
ignore: ['**/css/*']
|
ignore: ['**/css/*']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
from: __dirname + '/*.*',
|
from: '*.*',
|
||||||
globOptions: {
|
globOptions: {
|
||||||
|
dot: true,
|
||||||
ignore: ['**.js', '**.html']
|
ignore: ['**.js', '**.html']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue