mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00:00
12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { defineConfig } from "vite";
|
|
import preact from "@preact/preset-vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [preact()],
|
|
preview: {
|
|
port: 3000,
|
|
host: true,
|
|
},
|
|
});
|