7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
|
|
import { defineConfig } from 'vite';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
server: { port: 5692, strictPort: true },
|
||
|
|
preview: { port: 4596, strictPort: true },
|
||
|
|
});
|