Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 9709d0a

Browse files
committed
add back favicon
1 parent 53e3dec commit 9709d0a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

public/favicon.ico

16.6 KB
Binary file not shown.

remix.init/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ async function main({ rootDirectory }) {
1212
// get rid of anything that's not allowed in an app name
1313
.replace(/[^a-zA-Z0-9-_]/g, "-");
1414

15+
// copy files
16+
const filesToCopy = [["remix.init/gitignore", ".gitignore"]];
17+
for (const [from, to] of filesToCopy) {
18+
await fs.copyFile(
19+
path.join(rootDirectory, from),
20+
path.join(rootDirectory, to)
21+
);
22+
}
23+
1524
// update env to have SESSION_SECRET
1625
const EXAMPLE_ENV_PATH = path.join(rootDirectory, ".env.example");
1726
const ENV_PATH = path.join(rootDirectory, ".env");

0 commit comments

Comments
 (0)