Skip to content

Commit

Permalink
update deployment workflow and Next.js configuration for static expor…
Browse files Browse the repository at this point in the history
…t and trailing slashes
  • Loading branch information
nomomon committed Dec 14, 2024
1 parent c7fdc82 commit eb47d6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gp-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: out
folder: out
4 changes: 3 additions & 1 deletion next.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
output: "export",
trailingSlash: true,
skipTrailingSlashRedirect: true,
};

export default nextConfig;

0 comments on commit eb47d6c

Please sign in to comment.