Files
mercadodevida/project/storefront/next.config.ts
2026-08-24 15:40:01 +02:00

16 lines
407 B
TypeScript

import { dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import type { NextConfig } from 'next';
const storefrontRoot = dirname(fileURLToPath(import.meta.url));
const nextConfig: NextConfig = {
allowedDevOrigins: ['192.168.18.93', 'localhost', '127.0.0.1', 'seo-mv.rikrdo.com'],
reactStrictMode: true,
turbopack: {
root: storefrontRoot,
},
};
export default nextConfig;