yslootahrobotics/next.config.mjs
Najjar\NajjarV02 2b2198dfcb
Some checks are pending
CI/CD / test-and-build (push) Waiting to run
CI/CD / deploy (push) Blocked by required conditions
feat: set output configuration to standalone in Next.js config
2026-04-15 10:12:14 +04:00

12 lines
205 B
JavaScript

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