diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-15 00:13:40 +0000 |
| commit | c9aefa81ca1950121d2357fc66afe15eb400f537 (patch) | |
| tree | fd6196b55626cea8101cd5a4a00cb2a00d8a495b /server.prepare.ts | |
| parent | 1dd5d0fa8bb2ae794b263d1629a662166a9b9d08 (diff) | |
Fix eslint errors
Diffstat (limited to 'server.prepare.ts')
| -rw-r--r-- | server.prepare.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server.prepare.ts b/server.prepare.ts index a858e69..875889c 100644 --- a/server.prepare.ts +++ b/server.prepare.ts @@ -1,5 +1,5 @@ import { execSync } from 'child_process'; -import { defineNuxtPrepareHandler } from 'nuxt-prepare/config' +import { defineNuxtPrepareHandler } from 'nuxt-prepare/config'; export default defineNuxtPrepareHandler(async () => { const gitCommitHash = execSync('git rev-parse HEAD').toString().trim(); @@ -11,12 +11,12 @@ export default defineNuxtPrepareHandler(async () => { public: { gitCommitHash: gitCommitHash, gitCommitHashShort: gitCommitHashShort, - gitBranch: gitBranch - } + gitBranch: gitBranch, + }, }, state: { foo: 'bar', }, - } -})
\ No newline at end of file + }; +}); |
