Files
mercadodevida/project/storefront/next.config.ts
2026-08-17 22:23:10 +02:00

15 lines
320 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 = {
reactStrictMode: true,
turbopack: {
root: storefrontRoot,
},
};
export default nextConfig;