Skip to content

Commit

Permalink
fix: change vite app env to tesnet because local is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini committed Dec 20, 2024
1 parent 6020e7e commit be19198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:testnet": "yarn && dotenv -v VITE_APP_ENV=testnet -e .env -- turbo dev:testnet --",
"dev:mainnet": "yarn && dotenv -v VITE_APP_ENV=mainnet -e .env -- turbo dev:mainnet --",
"contracts:compile": "dotenv -v VITE_APP_ENV=local -- turbo run compile --filter=@repo/contracts",
"contracts:compile": "dotenv -v VITE_APP_ENV=testnet -- turbo run compile --filter=@repo/contracts",
"contracts:deploy:testnet": "dotenv -v VITE_APP_ENV=testnet -- turbo run deploy:testnet --filter=@repo/contracts",
"contracts:deploy:mainnet": "dotenv -v VITE_APP_ENV=mainnet -- turbo run deploy:mainnet --filter=@repo/contracts",
"contracts:upgrade:testnet": "dotenv -v VITE_APP_ENV=testnet -- turbo run upgrade:testnet --filter=contracts",
Expand All @@ -36,4 +36,4 @@
"apps/*",
"packages/*"
]
}
}

0 comments on commit be19198

Please sign in to comment.