Skip to content

Commit

Permalink
chore: set up static gh page
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 committed Jan 17, 2024
1 parent 2d7494d commit cc35c3c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

# gh pages
dist/
10 changes: 8 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
output: "export",
distDir: "dist",
images: {
unoptimized: true,
},
};

module.exports = nextConfig
module.exports = nextConfig;
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"**/*.tsx",
".next/types/**/*.ts",
"prettier.config.ts",
"dist/types/**/*.ts",
],
"exclude": ["node_modules"],
}

0 comments on commit cc35c3c

Please sign in to comment.