From 9f6121669198d08323beb8ea3b1579ec7ac5c802 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Wed, 8 Jan 2025 21:47:25 +0100 Subject: [PATCH] Update config to use relative prefixes. --- next.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.ts b/next.config.ts index e9ffa30..8daf3a4 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,9 @@ -import type { NextConfig } from "next"; +import type {NextConfig} from "next"; const nextConfig: NextConfig = { - /* config options here */ + /* config options here */ + output: "export", + assetPrefix: "./" }; export default nextConfig;