1
0
Fork 0
forked from Kispi/Core
HGOE-SaS/webapp/vite.config.ts

11 lines
176 B
TypeScript
Raw Normal View History

2022-07-12 18:44:26 +00:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
2023-06-25 13:34:09 +00:00
plugins: [vue({
script: {
defineModel: true,
}
})]
2022-07-12 18:44:26 +00:00
})