fix: resolve prod load error

This commit is contained in:
Coffee-crocodile 2023-06-25 11:57:48 +08:00
parent 4568d807b3
commit 96fc4c68e7
2 changed files with 3 additions and 1 deletions

View File

@ -10,5 +10,6 @@ module.exports = {
'@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/restrict-template-expressions': 'off', '@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-floating-promises': 'off',
}, },
} }

View File

@ -31,4 +31,5 @@ async function setupApp() {
// 挂载 // 挂载
app.mount('#app') app.mount('#app')
} }
await setupApp()
setupApp()