chore(dev): correct entrypoint path for embed on dev build (#16836)

This commit is contained in:
zyoshoka 2025-11-24 11:08:44 +09:00 committed by GitHub
parent 0ea0e05e61
commit 1b46813e7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
//#region Script //#region Script
async function importAppScript() { async function importAppScript() {
await import(CLIENT_ENTRY ? `/embed_vite/${CLIENT_ENTRY.replace('scripts', lang)}` : '/embed_vite/src/_boot_.ts') await import(CLIENT_ENTRY ? `/embed_vite/${CLIENT_ENTRY.replace('scripts', lang)}` : '/embed_vite/src/boot.ts')
.catch(async e => { .catch(async e => {
console.error(e); console.error(e);
renderError('APP_IMPORT'); renderError('APP_IMPORT');