feat: 收口组件样式并调整移动端侧栏
This commit is contained in:
+6
-1
@@ -1,5 +1,10 @@
|
||||
import { fileURLToPath, URL } from 'node:url'
|
||||
import { defineConfig } from 'vitest/config'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
/** 使用轻量 DOM 测试 API、异步状态和 Vue 页面行为。 */
|
||||
export default defineConfig({ plugins: [vue()], test: { environment: 'happy-dom', restoreMocks: true } })
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } },
|
||||
test: { environment: 'happy-dom', restoreMocks: true }
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user