From b1d68ac307ed87d63e83820cbdf843fff0fd9f7f Mon Sep 17 00:00:00 2001 From: polwex Date: Thu, 11 Sep 2025 01:48:14 +0700 Subject: init --- front/vite.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 front/vite.config.ts (limited to 'front/vite.config.ts') diff --git a/front/vite.config.ts b/front/vite.config.ts new file mode 100644 index 0000000..e2b7add --- /dev/null +++ b/front/vite.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from "vite"; +import react from "@vitejs/plugin-react"; +import { resolve } from "node:path"; + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], + resolve: { + alias: { + "@": resolve(__dirname, "./src"), + }, + }, +}); -- cgit v1.2.3