1
0
forked from lxh/go-wxhelper
go-wxhelper/frontend/vite.config.ts

19 lines
367 B
TypeScript
Raw Normal View History

2024-07-04 14:46:12 +08:00
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})