7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
server: { port: 5678, strictPort: true },
|
||
|
|
preview: { port: 4588, strictPort: true },
|
||
|
|
})
|