2024-07-15 11:41:34 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
2025-02-07 09:07:20 +03:00
|
|
|
const nextConfig = {
|
2025-02-18 13:41:36 +03:00
|
|
|
reactStrictMode: false,
|
|
|
|
output: "standalone"
|
2025-02-07 09:07:20 +03:00
|
|
|
};
|
2024-07-15 11:41:34 +03:00
|
|
|
|
|
|
|
export default nextConfig;
|