mirror of
https://github.com/Dokploy/examples.git
synced 2026-06-15 20:25:24 +02:00
12 lines
145 B
TypeScript
12 lines
145 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
preview: {
|
|
port: 3000,
|
|
host: true,
|
|
},
|
|
});
|