Skip to content

Commit

Permalink
fix(app): prevent over-optimization
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
linden committed Sep 15, 2022
1 parent 6cdc5c5 commit c2352e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/package.json
Expand Up @@ -8,8 +8,8 @@
"dist"
],
"scripts": {
"build": "parcel build",
"dev": "parcel watch"
"build": "parcel build --no-optimize",
"dev": "parcel watch --no-optimize"
},
"dependencies": {
"@firebase-proxy/core": "file:../core",
Expand Down

0 comments on commit c2352e5

Please sign in to comment.