diff --git a/.eslintrc.js b/.eslintrc.js index 4290cc5..2f0fe41 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,5 +10,6 @@ module.exports = { '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-return': 'off', '@typescript-eslint/restrict-template-expressions': 'off', + '@typescript-eslint/no-floating-promises': 'off', }, } diff --git a/src/main.ts b/src/main.ts index cfe04e7..1d7dc51 100644 --- a/src/main.ts +++ b/src/main.ts @@ -31,4 +31,5 @@ async function setupApp() { // 挂载 app.mount('#app') } -await setupApp() + +setupApp()