concept-collection / stan-remote-sampling
stan-remote-sampling / vite.config.ts
11 lines · 253 BBlameHistoryRaw
1import react from "@vitejs/plugin-react";
2import { defineConfig } from "vite";
4export default defineConfig(() => ({
5 plugins: [react()],
6 // Relative base, so the build works wherever it is mounted
7 base: "./",
8 server: {
9 port: 3000,
10 },
11}));