mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import { defineConfig } from "vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3001,
|
|
// open the browser
|
|
open: true,
|
|
},
|
|
publicDir: "public",
|
|
});
|