yslootahrobotics/next.config.mjs
2026-04-10 15:31:59 +04:00

12 lines
201 B
JavaScript

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