furina.id/vite.config.ts

18 lines
349 B
TypeScript
Raw Permalink Normal View History

2024-01-05 23:28:25 +07:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve("src/"),
},
},
2024-01-06 03:35:50 +07:00
build: {
chunkSizeWarningLimit: 1024,
},
2024-01-10 16:25:32 +07:00
esbuild: { legalComments: "none" },
2024-01-05 23:28:25 +07:00
});