11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: { port: 5175, strictPort: true },
|
|
define: { 'process.env': {} }
|
|
})
|
|
|
|
|