Skip to content

Commit

Permalink
Merge pull request #1056 from samchon/features/website
Browse files Browse the repository at this point in the history
Upgrade TGrid and Next of Website
  • Loading branch information
samchon authored May 17, 2024
2 parents 13c90cc + 1f7dc80 commit 3ab2300
Show file tree
Hide file tree
Showing 10 changed files with 121 additions and 3,321 deletions.
6 changes: 5 additions & 1 deletion website/.gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
.next
node_modules/
out/
public/api/
raw/

public/api/
public/compilers/
public/robots.txt
public/sitemap*.xml

!package-lock.json
15 changes: 7 additions & 8 deletions website/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ const withNextra = require("nextra")({
/** @type {import('next').NextConfig} */
const config = {
...withNextra(),
output: "export",
exportTrailingSlash: true,
images: {
unoptimized: true,
},
rewrites: async () => {
return [
{
source: "/api",
destination: "/api/index.html",
},
];
},
rewrites: async () => [
{
source: "/api",
destination: "/api/index.html",
},
],
};
module.exports = config;
167 changes: 105 additions & 62 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3ab2300

Please sign in to comment.