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