diff --git a/next.config.ts b/next.config.ts index 3971175..be5fa4c 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,11 +2,12 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, - swcMinify: true, output: 'export', images: { unoptimized: true, }, + basePath: '/cheatsheet', + assetPrefix: '/cheatsheet/', }; export default nextConfig;