fix(lint): missing dangling comma

This commit is contained in:
Corentin Thomasset 2022-06-02 00:30:43 +02:00
parent ba3b84c668
commit f05c8e1dc6
No known key found for this signature in database
GPG Key ID: DBD997E935996158

View File

@ -59,7 +59,7 @@ export const config = figue({
.loadEnv({
...import.meta.env,
// Because the string 'import.meta.env.PACKAGE_VERSION' is statically replaced during build time (see 'define' in vite.config.ts)
PACKAGE_VERSION: import.meta.env.PACKAGE_VERSION
PACKAGE_VERSION: import.meta.env.PACKAGE_VERSION,
})
.validate()
.getConfig();