9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
reactStrictMode: false,
|
|
trailingSlash: true, // if needed for static export
|
|
};
|
|
|
|
export default nextConfig;
|