mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 12:03:00 +00:00
16 lines
251 B
TypeScript
16 lines
251 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
clearScreen: false,
|
|
server: {
|
|
host: '127.0.0.1',
|
|
port: 1420,
|
|
strictPort: true,
|
|
},
|
|
preview: {
|
|
host: '127.0.0.1',
|
|
port: 1420,
|
|
strictPort: true,
|
|
},
|
|
});
|