Skip to content

Commit 7029efd

Browse files
committed
initial migration to nextjs
1 parent 2b10de9 commit 7029efd

File tree

11 files changed

+4730
-4492
lines changed

11 files changed

+4730
-4492
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ dist-ssr
1313
coverage
1414
*.local
1515
*.tsbuildinfo
16+
.next
17+
next-env.d.ts
1618

1719
# Editor directories and files
1820
.vscode/*

index.html

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

next.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
output: "export", // Outputs a Single-Page Application (SPA).
4+
distDir: "./dist", // Changes the build output directory to `./dist/`.
5+
};
6+
7+
export default nextConfig;

0 commit comments

Comments
 (0)