diff --git a/vite.config.ts b/vite.config.ts index 58672de..b476a12 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,13 +1,13 @@ +import path from "node:path"; import react from "@vitejs/plugin-react"; -import path from "path"; import { defineConfig } from "vite"; // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react()], - resolve: { - alias: { - "@": path.resolve(__dirname, "./src"), - }, - }, + plugins: [react()], + resolve: { + alias: { + "@": path.resolve(__dirname, "./src"), + }, + }, });