feat(config): hide the banner by default

This commit is contained in:
Corentin Thomasset 2023-03-29 19:46:59 +02:00 committed by Corentin THOMASSET
parent 972ffe6f69
commit 161a21f285
2 changed files with 8 additions and 1 deletions

View file

@ -55,6 +55,12 @@ export const config = figue({
env: 'VITE_NEW_TOOLS',
},
},
showBanner: {
doc: 'Show the banner',
format: 'boolean',
default: false,
env: 'VITE_SHOW_BANNER',
},
})
.loadEnv({
...import.meta.env,