feat: 🏗️ Export as static site

This commit is contained in:
Jesse Wierzbinski 2024-07-22 13:41:51 +02:00
parent 47848c3366
commit 4d08b7e8b0
No known key found for this signature in database

View file

@ -16,6 +16,7 @@ const withMDX = nextMDX({
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
pageExtensions: ["js", "jsx", "ts", "tsx", "mdx"], pageExtensions: ["js", "jsx", "ts", "tsx", "mdx"],
output: "export"
}; };
export default withSearch(withMDX(nextConfig)); export default withSearch(withMDX(nextConfig));