You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
387 B
TypeScript
22 lines
387 B
TypeScript
1 year ago
|
import legacy from '@vitejs/plugin-legacy'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
import path from 'path'
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
legacy()
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': path.resolve(__dirname, './src'),
|
||
|
},
|
||
|
},
|
||
|
test: {
|
||
|
globals: true,
|
||
|
environment: 'jsdom'
|
||
|
}
|
||
|
})
|