From cc2c89af3657e9657834a1a37c7a5e70b986c44c Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 23 Apr 2025 13:38:27 -0500 Subject: [PATCH] vite: use "node:path" import --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index b3de935..c76ef9a 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,6 @@ import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; -import path from "path"; +import path from "node:path"; // https://vitejs.dev/config/ export default defineConfig(({ mode }) => ({