Skip to content

Commit 4b105c3

Browse files
wip
1 parent d81518d commit 4b105c3

File tree

7 files changed

+1600
-0
lines changed

7 files changed

+1600
-0
lines changed

app/layout.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default function RootLayout({
2+
children,
3+
}: {
4+
children: React.ReactNode
5+
}) {
6+
return (
7+
<html lang="en">
8+
<body>{children}</body>
9+
</html>
10+
)
11+
}

next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.

next.config.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
let nextConfig = {
2+
async rewrites() {
3+
return [
4+
{
5+
source: '/:path*',
6+
destination: 'http://localhost:4000/:path*',
7+
},
8+
];
9+
},
10+
};
11+
12+
module.exports = nextConfig;

0 commit comments

Comments
 (0)