Files
AnonymousOverflow-hub/next.config.mjs
T
2024-06-11 01:20:30 -04:00

11 lines
189 B
JavaScript

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