refactor: rename dev to canary

This commit is contained in:
三咲智子 2023-01-07 00:20:12 +08:00
parent cffcddefb9
commit c713add727
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E
4 changed files with 31 additions and 9 deletions

View file

@ -41,7 +41,7 @@ export const getEnv = async () => {
: isPreview
? 'preview'
: branch === 'main'
? 'main'
? 'canary'
: 'release'
return { commit, branch, env } as const
}