diff options
author | 2022-06-02 00:30:43 +0200 | |
---|---|---|
committer | 2022-06-02 00:30:43 +0200 | |
commit | f05c8e1dc69275e529f4c8771ad55ba211e7fb5e (patch) | |
tree | f5a951912cbb1ec9022b0af729ac8e42c1185942 /src/config.ts | |
parent | ba3b84c668c4b452a9a98a07f11cfe1e6963fff5 (diff) | |
download | it-tools-f05c8e1dc69275e529f4c8771ad55ba211e7fb5e.tar.gz it-tools-f05c8e1dc69275e529f4c8771ad55ba211e7fb5e.tar.zst it-tools-f05c8e1dc69275e529f4c8771ad55ba211e7fb5e.zip |
fix(lint): missing dangling comma
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.ts b/src/config.ts index 926fa08..9837cb4 100644 --- a/src/config.ts +++ b/src/config.ts @@ -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(); |