mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00: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,
|
|
},
|
|
});
|