diff --git a/.gitignore b/.gitignore index f74c781..e4caf11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .next node_modules +out/ \ No newline at end of file diff --git a/next.config.js b/next.config.js index ef28363..74dca5f 100644 --- a/next.config.js +++ b/next.config.js @@ -3,4 +3,9 @@ const withNextra = require('nextra')({ themeConfig: './theme.config.tsx', }) -module.exports = withNextra() +module.exports = { + ...withNextra(), + images: { + unoptimized: true, + }, +}; diff --git a/package.json b/package.json index 4a20608..5a89311 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "scripts": { "dev": "next dev", "build": "next build", - "start": "next start" + "start": "next start", + "export": "next build && next export" }, "repository": { "type": "git",