遇到问题:
1. TypeError: Unknown file extension ".scss" for D:\workspace\ai_plat_front\node_modules\element-plus\theme-chalk\src\base.scss
Serialized Error: { code: 'ERR_UNKNOWN_FILE_EXTENSION' }
vite.config.js (蓝色部分,为修改内容)
/// <reference types="vitest" /> /* eslint-disable */ const timestamp = new Date().getTime() export default defineConfig(({ command, mode, ssrBuild }) => { return { // 其他配置 test: { // 启用类似 jest 的全局测试 API globals: true, // 使用 happy-dom 模拟 DOM // 这需要你安装 happy-dom 作为对等依赖(peer dependency) environment: 'happy-dom', server: { deps: { inline: ['element-plus'] } } } } })