mirror of
https://github.com/Funkoala14/KnowledgeBase_OOIN.git
synced 2025-06-07 22:48:14 +08:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: '../dist'
|
|
},
|
|
server: {
|
|
port: 8080
|
|
}
|
|
})
|