Skip to content

Commit

Permalink
feat: port to next js
Browse files Browse the repository at this point in the history
  • Loading branch information
Jh123x committed Jan 4, 2025
1 parent d5f13e7 commit a8a36aa
Show file tree
Hide file tree
Showing 28 changed files with 958 additions and 191 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ yarn-debug.log*
yarn-error.log*

.vscode
.next
next-env.d.ts
11 changes: 11 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export', // Outputs a Single-Page Application (SPA).
distDir: './build', // Changes the build output directory to `./build`.
reactStrictMode: true, // Enables React Strict Mode.
images: {
unoptimized: true, // Disables image optimization.
}
}

export default nextConfig
Loading

0 comments on commit a8a36aa

Please # to comment.