diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2023-12-02 11:37:31 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-02 11:37:31 +0900 |
| commit | a5f0b5ec74940b0c53242dfc64c322139c91e362 (patch) | |
| tree | 9ede0938697bad7ded8272cb5d2c62062fd983fa /packages/frontend/src/scripts | |
| parent | Fix: missing receiver warn is not disappear (#12538) (diff) | |
| download | sharkey-a5f0b5ec74940b0c53242dfc64c322139c91e362.tar.gz sharkey-a5f0b5ec74940b0c53242dfc64c322139c91e362.tar.bz2 sharkey-a5f0b5ec74940b0c53242dfc64c322139c91e362.zip | |
fix #12528 (#12536)
Diffstat (limited to 'packages/frontend/src/scripts')
| -rw-r--r-- | packages/frontend/src/scripts/theme.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/scripts/theme.ts b/packages/frontend/src/scripts/theme.ts index b6383487c9..bc97f971ef 100644 --- a/packages/frontend/src/scripts/theme.ts +++ b/packages/frontend/src/scripts/theme.ts @@ -44,7 +44,7 @@ export const getBuiltinThemes = () => Promise.all( 'd-cherry', 'd-ice', 'd-u0', - ].map(name => import(`../themes/${name}.json5`).then(({ default: _default }): Theme => _default)), + ].map(name => import(`${__dirname}/../themes/${name}.json5`).then(({ default: _default }): Theme => _default)), ); export const getBuiltinThemesRef = () => { |