Skip to content

Commit

Permalink
fix(hmr): directory already exists error on server start (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
samrum authored May 2, 2023
1 parent 0c0a822 commit e177115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devBuilder/devBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default abstract class DevBuilder<
this.viteConfig.root,
this.viteConfig.publicDir
);
copy(publicDir, this.outDir);
await copy(publicDir, this.outDir);

await this.writeManifestHtmlFiles(manifestHtmlFiles);
await this.writeManifestContentScriptFiles();
Expand Down

0 comments on commit e177115

Please sign in to comment.