Skip to content

Commit

Permalink
also include favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
ztanner committed Sep 6, 2024
1 parent 6bb620e commit 8fb9bfc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/create-next-app/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,14 @@ export const installTemplate = async ({
stats: false,
// We don't want to modify compiler options in [ts/js]config.json
// and none of the files in the .git folder
ignore: ["tsconfig.json", "jsconfig.json", ".git/**/*", "**/fonts/**"],

ignore: [
"tsconfig.json",
"jsconfig.json",
".git/**/*",
"**/fonts/**",
"**/favicon.ico",
],
});
const writeSema = new Sema(8, { capacity: files.length });
await Promise.all(
Expand Down

0 comments on commit 8fb9bfc

Please sign in to comment.