Skip to content

Commit

Permalink
Property 'jsonDir' does not exist on type 'Env'. Did you mean 'jsDir'?
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed Jul 4, 2024
1 parent 09f35ad commit 025c743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/.build/src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async function write() {
await Promise.all([
fs.promises.writeFile(path.join(env.jsDir, `manifest.${hash}.js`), clientManifest),
fs.promises.writeFile(
path.join(env.jsonDir, `manifest.${env.prod ? 'prod' : 'dev'}.json`),
path.join(env.jsDir, `manifest.${env.prod ? 'prod' : 'dev'}.json`),
JSON.stringify(serverManifest, null, env.prod ? undefined : 2),
),
]);
Expand Down

1 comment on commit 025c743

@schlawg
Copy link
Collaborator

@schlawg schlawg commented on 025c743 Jul 4, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, thank you.

Please sign in to comment.