diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2023-12-04 12:05:35 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-04 12:05:35 +0900 |
| commit | b2c4973cda7202f6b2c4f5f150dcdbb54d9c9b06 (patch) | |
| tree | bb6c3a29fe5d2dbbff0aa163d3396cccd21d1613 /packages | |
| parent | fix (backend): 「みつける」のなかにミュートしたユーザが... (diff) | |
| download | sharkey-b2c4973cda7202f6b2c4f5f150dcdbb54d9c9b06.tar.gz sharkey-b2c4973cda7202f6b2c4f5f150dcdbb54d9c9b06.tar.bz2 sharkey-b2c4973cda7202f6b2c4f5f150dcdbb54d9c9b06.zip | |
fix dev build (#12566)
Diffstat (limited to 'packages')
| -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..21ef85fe7a 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(`@/themes/${name}.json5`).then(({ default: _default }): Theme => _default)), ); export const getBuiltinThemesRef = () => { |