mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix chunk names
This commit is contained in:
parent
239bbfbbf1
commit
5d39f23083
2 changed files with 2 additions and 2 deletions
|
@ -262,7 +262,7 @@ class AppRouter {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (route.controller) {
|
if (route.controller) {
|
||||||
import('../controllers/' + route.controller).then(onInitComplete);
|
import(/* webpackChunkName: "[request]" */ '../controllers/' + route.controller).then(onInitComplete);
|
||||||
} else {
|
} else {
|
||||||
onInitComplete();
|
onInitComplete();
|
||||||
}
|
}
|
||||||
|
|
|
@ -192,7 +192,7 @@ const Direction = {
|
||||||
|
|
||||||
const url = filtered[0].path;
|
const url = filtered[0].path;
|
||||||
|
|
||||||
import(`../strings/${url}`).then((fileContent) => {
|
import(/* webpackChunkName: "[request]" */ `../strings/${url}`).then((fileContent) => {
|
||||||
resolve(fileContent);
|
resolve(fileContent);
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
resolve({});
|
resolve({});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue