Files
TechRadarAJR/next.config.mjs
2024-03-11 10:40:14 +01:00

10 lines
190 B
JavaScript

/** @type {import("next").NextConfig} */
const nextConfig = {
output: "export",
// basePath: '/techradar',
trailingSlash: true,
reactStrictMode: true,
};
export default nextConfig;