From 5e325a435acaba35ecc37c859566b5de8f6dc53c Mon Sep 17 00:00:00 2001 From: Tosin Ogunjobi Date: Wed, 24 Jan 2024 22:09:56 -0800 Subject: [PATCH] Update next.config.js --- next.config.js | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/next.config.js b/next.config.js index 66a59e0..79bd675 100644 --- a/next.config.js +++ b/next.config.js @@ -1,28 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - /** - * Enable static exports for the App Router. - * - * @see https://nextjs.org/docs/app/building-your-application/deploying/static-exports - */ - output: "export", - - /** - * Set base path. This is usually the slug of your repository. - * - * @see https://nextjs.org/docs/app/api-reference/next-config-js/basePath - */ - basePath: "/Universal-Music-Library-Transfer", - - /** - * Disable server-based image optimization. Next.js does not support - * dynamic features with static exports. - * - * @see https://nextjs.org/docs/pages/api-reference/components/image#unoptimized - */ + output: 'export', + distDir: 'dist', images: { unoptimized: true, }, -}; +} -export default nextConfig; +module.exports = nextConfig