diff --git a/docs/next-js/next.config.ts b/docs/next-js/next.config.ts index c63901e..736ffae 100644 --- a/docs/next-js/next.config.ts +++ b/docs/next-js/next.config.ts @@ -2,14 +2,14 @@ import type { NextConfig } from "next"; const isProd = process.env.NODE_ENV === 'production'; const basePath = isProd ? (process.env.BASE_PATH || '') : ''; -const assetPrefix = isProd ? (basePath ? `${basePath.replace(/\/$/, '')}/` : './') : ''; +// const assetPrefix = isProd ? (basePath ? `${basePath.replace(/\/$/, '')}/` : './') : ''; const nextConfig: NextConfig = { /* config options here */ output: 'export' as const, basePath: basePath, trailingSlash: true, - assetPrefix: assetPrefix, + // assetPrefix: assetPrefix, images: { unoptimized: true, },