We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deploy
build
Before being able to build frontend applications, users must run fuels build to generate all required files.
fuels build
However, the contract-ids.json file is only created when contracts are deployed via the deploy command.
contract-ids.json
That's why we need this flag, to make it straightforward to have routines like:
{ "scripts": { "prebuild": "fuels build --depoy", "build": "next build", } }
This was a requirement for #1408
The text was updated successfully, but these errors were encountered:
arboleya
Successfully merging a pull request may close this issue.
Before being able to
build
frontend applications, users must runfuels build
to generate all required files.However, the
contract-ids.json
file is only created when contracts are deployed via thedeploy
command.That's why we need this flag, to make it straightforward to have routines like:
The text was updated successfully, but these errors were encountered: