mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-04-29 00:59:35 +07:00
15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
import path from "path";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
"@backend": path.resolve(__dirname, "../backend/src"),
|
|
},
|
|
},
|
|
});
|