Skip to content

Commit

Permalink
config the nextjs to deploy on github page
Browse files Browse the repository at this point in the history
  • Loading branch information
officialrajdeepsingh committed Jan 15, 2024
1 parent bab77cc commit d9a2157
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
/** @type {import('next').NextConfig} */

const withNextra = require("nextra")({
output: 'export',
theme: "section-blog-theme",
themeConfig: "./theme.config.jsx",
});

module.exports = withNextra();
module.exports = withNextra({
output: 'export',
images:{
unoptimized: true
}
});

0 comments on commit d9a2157

Please sign in to comment.