Update config to use relative prefixes.

This commit is contained in:
Manuel Friedli 2025-01-08 21:47:25 +01:00
parent 36e1ea45d5
commit 9f61216691
Signed by: manuel
GPG key ID: 41D08ABA75634DA1

View file

@ -1,7 +1,9 @@
import type { NextConfig } from "next"; import type {NextConfig} from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
output: "export",
assetPrefix: "./"
}; };
export default nextConfig; export default nextConfig;