feat: Add .env folder to gitignore
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -36,3 +36,5 @@ yarn-error.log*
|
|||||||
# typescript
|
# typescript
|
||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
|
|
||||||
|
!src/app/.env/
|
||||||
7
src/app/.env/page.tsx
Normal file
7
src/app/.env/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
import { redirect } from "next/navigation";
|
||||||
|
|
||||||
|
export default function WhyAreYouEvenHere() {
|
||||||
|
redirect("https://www.youtube.com/watch?v=dQw4w9WgXcQ");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user