Was hitting some canister limitations on deploy when I had multiple React assets building. Is there a simple key:value that you can place in a dfx.json canister entry that simply allows the build/deploy to skip or ignore a canister entry vs removing the entries in your code/dfx.json file? Seems simple and trivial, but could be nice.
Example:
{
"canisters": {
"hello": {
"main": "src/hello/main.mo",
"type": "motoko",
"skip": true
},
...
}