错误提示或者是有关于webpack的错误 可以添加配置项解决

 Uncaught runtime errors: × ERROR ResizeObserver loop completed with undelivered notifications. 
module.exports = defineConfig({
  transpileDependencies: true,
  // 关闭文件名校验
  lintOnSave: false,
  configureWebpack: {
    resolve: {
      alias: {
        '@': path.resolve(__dirname, 'src')
      }
    }
  },
  devServer: {
    client: {
      overlay: false // 关闭错误覆盖功能
    }
  }
});
Last modification:August 23, 2023
反正也没人会打赏