19 lines
297 B
TypeScript
19 lines
297 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 4173,
|
|
strictPort: true,
|
|
},
|
|
preview: {
|
|
port: 4173,
|
|
strictPort: true,
|
|
},
|
|
build: {
|
|
sourcemap: true,
|
|
target: 'es2022',
|
|
},
|
|
})
|