yslootahrobotics/next.config.mjs
Najjar\NajjarV02 7458818c62
Some checks are pending
CI/CD / test-and-build (push) Waiting to run
CI/CD / deploy (push) Blocked by required conditions
feat: add CTAButton component with customizable variants, sizes, and arrows
2026-05-21 12:57:56 +04:00

13 lines
271 B
JavaScript

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