Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit c2352e5

Browse files
committed
fix(app): prevent over-optimization
currently parcel's optimization system removes the `process.env.{REACT_APP_NHOST_SUBDOMAIN, REACT_APP_NHOST_REGION}` call, blocking us from setting nhost to use a different subdomain (related: parcel-bundler/parcel#8433)
1 parent 6cdc5c5 commit c2352e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"dist"
99
],
1010
"scripts": {
11-
"build": "parcel build",
12-
"dev": "parcel watch"
11+
"build": "parcel build --no-optimize",
12+
"dev": "parcel watch --no-optimize"
1313
},
1414
"dependencies": {
1515
"@firebase-proxy/core": "file:../core",

0 commit comments

Comments
 (0)