diff --git a/frontend/.env.example b/frontend/.env.development similarity index 79% rename from frontend/.env.example rename to frontend/.env.development index 6837c78..7c1b609 100644 --- a/frontend/.env.example +++ b/frontend/.env.development @@ -1,4 +1,4 @@ -VITE_BACKEND_URL=https://localhost:3000 +VITE_BACKEND_URL=http://localhost:3000 VITE_SPTARKOV_HOME=https://www.sp-tarkov.com/ VITE_SPTARKOV_WORKSHOP=https://mods.sp-tarkov.com/ VITE_SPTARKOV_DOCUMENTATION=https://docs.sp-tarkov.com/ diff --git a/frontend/package.json b/frontend/package.json index d30401b..365d915 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "vite", - "build": "tsc && vite build", + "build": "tsc && vite build --mode development", "build:prod": "tsc && vite build --mode production", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview",