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

15 lines
279 B

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