Currently, during development, I have to import from local files; e.g.:
import NonFungibleToken from "../contracts/NonFungibleToken.cdc"
But this causes errors during deployment. The workaround I currently have is:
import NonFungibleToken from 0x631e88ae7f1d7c20
But this causes errors during development (with the VSCode extension, for example).
Is there something Iām missing? Do I need to change every file I write every time I deploy to testnet?