coder/offlinedocs/next.config.js

9 lines
163 B
JavaScript

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