diff --git a/.gitignore b/.gitignore index 4d29575..3ffcb9d 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,9 @@ /build # misc +.env +.env.development +.env.production .DS_Store .env.local .env.development.local diff --git a/package.json b/package.json index 9e5d8f5..1d543ab 100644 --- a/package.json +++ b/package.json @@ -35,8 +35,8 @@ "web-vitals": "^2.1.4" }, "scripts": { - "start": "node ./configs/loadEnv.js && react-scripts start", - "build": "node ./configs/loadEnv.js && react-scripts build", + "start": "react-scripts start", + "build": "react-scripts build", "test": "node ./configs/loadEnv.js && react-scripts test", "eject": "react-scripts eject" },