refactor: update path import to use node:path and format config for consistency

This commit is contained in:
Ben Allfree
2025-11-23 16:56:51 -08:00
parent 7b64c5afff
commit b16ccdc183
+7 -7
View File
@@ -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"),
},
},
});