lapsha/vite.config.ts

14 lines
222 B
TypeScript
Raw Normal View History

2023-07-01 11:15:43 +00:00
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
script: {
defineModel: true
}
})
],
})