Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/src/commit/51ad3184b6c4eea16a83102e4609ce651be347e7/next.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
homepage/next.config.js

13 lines
239 B

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "standalone",
swcMinify: false,
images: {
domains: ["cdn.jsdelivr.net"],
unoptimized: true,
},
};
module.exports = nextConfig;