多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
766 B

/// <reference types="vitest" />
import path from 'path'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
import Icons from 'unplugin-icons/vite'
import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [
Vue(),
VueI18nPlugin({
include: path.resolve(__dirname, '../lang'),
}),
Icons({
autoInstall: true,
compiler: 'vue3',
}),
],
test: {
globals: true,
environment: 'happy-dom',
},
resolve: {
alias: {
'@': path.resolve(__dirname, '../'),
'~': path.resolve(__dirname, '../'),
'#app': path.resolve(__dirname, '../node_modules/nuxt/dist/app'),
'#imports': path.resolve(__dirname, '../.nuxt/imports'),
},
},
})