10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
// basePath: "/techradar",
|
|
trailingSlash: true,
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|