diff --git a/next.config.js b/next.config.js index 53591cb..5bc823a 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,9 @@ const nextConfig = { reactStrictMode: true, swcMinify: true, + output: "export", images: { + unoptimized: true, remotePatterns: [ { protocol: "https", @@ -11,16 +13,6 @@ const nextConfig = { }, ], }, - async redirects() { - return [ - // Basic redirect - { - source: "/The-Book-of-Swarm.pdf", - destination: "https://papers.ethswarm.org/p/book-of-swarm/", - permanent: false, - }, - ]; - }, }; module.exports = nextConfig; diff --git a/package.json b/package.json index 338980b..f4fd4b5 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,6 @@ "dev": "next dev", "build": "next build", "start": "next start", - "export": "next export", "lint": "next lint", "build-icons": "node ./scripts/build-icons.js" },