Skip to content

Commit 7f7731d

Browse files
committed
Implementation: migrates to Next.js
1 parent 39ef1ea commit 7f7731d

15 files changed

Lines changed: 808 additions & 1248 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,5 @@ ehthumbs.db
4949
.yarn/unplugged
5050
.yarn/build-state.yml
5151
.pnp.*
52+
53+
.next/

index.html

Lines changed: 0 additions & 21 deletions
This file was deleted.

next-env.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
import "./.next/dev/types/routes.d.ts";
4+
5+
// NOTE: This file should not be edited
6+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
/* config options here */
5+
};
6+
7+
export default nextConfig;

0 commit comments

Comments
 (0)