From b16ccdc1838be64f3f25e6f7a803d960ad71341d Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 23 Nov 2025 16:56:51 -0800 Subject: [PATCH] refactor: update path import to use node:path and format config for consistency --- vite.config.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"), + }, + }, });