12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import vue from '@vitejs/plugin-vue'
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 5000
|
|
}
|
|
})
|