Files
TechRadarAJR/next.config.js
2025-03-03 16:24:35 +01:00

17 lines
360 B
JavaScript

const config = require("./data/config.json");
const basePath =
config.basePath && config.basePath !== "/" ? config.basePath : "";
/** @type {import("next").NextConfig} */
const nextConfig = {
basePath,
output: "export",
trailingSlash: true,
reactStrictMode: true,
experimental: {
scrollRestoration: true,
},
};
module.exports = nextConfig;