From d17acceec8a7d5fc5f7853920a5335209b6376db Mon Sep 17 00:00:00 2001 From: I-Have-An-Issue <34550332+I-Have-An-Issue@users.noreply.github.com> Date: Fri, 7 Oct 2022 23:41:12 -0400 Subject: [PATCH] Fix env vars --- vite.config.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vite.config.js b/vite.config.js index e103e0a..fc9d5f4 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,10 +1,7 @@ import { sveltekit } from "@sveltejs/kit/vite"; const config = { - plugins: [sveltekit()], - define: { - "process.env": process.env - } + plugins: [sveltekit()] }; export default config;