From baad3bd38bf2db899677ec264ff5065b6216a621 Mon Sep 17 00:00:00 2001 From: Neshura Date: Thu, 1 Jun 2023 00:13:23 +0200 Subject: [PATCH] Added base path --- next.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 767719f..193494c 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + basePath: '/ethics', +} module.exports = nextConfig