diff --git a/next.config.ts b/next.config.ts index e9ffa30..a830afa 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,11 @@ -import type { NextConfig } from "next"; - -const nextConfig: NextConfig = { - /* config options here */ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, + output: "export", + images: { + unoptimized: true, + }, + assetPrefix: "./", }; -export default nextConfig; +module.exports = nextConfig; diff --git a/package.json b/package.json index 89f8be6..49fb681 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,9 @@ "dev": "next dev", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "next lint", + "export": "next export", + "deploy": "next build && next export && touch out/.nojekyll" }, "dependencies": { "react": "19.0.0-rc-66855b96-20241106",