aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/vite.config.ts
blob: 4f4273b6ea0aa233f41b6dc56cd24b0ff0df3057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { fileURLToPath, URL } from "node:url";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import svgr from "vite-plugin-svgr";

// https://vite.dev/config/
export default defineConfig({
  resolve: {
    alias: {
      "@/": fileURLToPath(new URL("./", import.meta.url)),
    },
  },
  plugins: [react(), svgr()],
});