2024-04-07 22:02:19 +00:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2024-04-30 02:54:54 +00:00
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
2024-04-07 22:02:19 +00:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
2024-04-30 02:54:54 +00:00
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
vueJsx()
|
|
|
|
],
|
2024-04-07 22:02:19 +00:00
|
|
|
base: "/"
|
|
|
|
})
|