From 90cb11dcd01965b84540b1026f00f8bcbe97685a Mon Sep 17 00:00:00 2001 From: rudyorre Date: Sun, 31 Dec 2023 03:55:27 -0800 Subject: [PATCH] Fix: Export prefix --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 8e81e6a0..ddb19e60 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', + assetPrefix: 'https://rudyorre.com', } module.exports = nextConfig