22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import viteTsconfigPaths from "vite-tsconfig-paths";
|
|
import { resolve } from "path";
|
|
|
|
export default defineConfig({
|
|
// depending on your application, base can also be "/"
|
|
base: "/",
|
|
plugins: [react(), viteTsconfigPaths()],
|
|
server: {
|
|
// this ensures that the browser opens upon server start
|
|
open: true,
|
|
// this sets a default port to 3000
|
|
port: 3000,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"family-chart": resolve(__dirname, "src"),
|
|
},
|
|
},
|
|
});
|