16 lines
407 B
TypeScript
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;
|