1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import type { NextConfig } from 'next'; const nextConfig: NextConfig = { allowedDevOrigins: ['192.168.1.45', '192.168.1.33'], turbopack: { rules: { '*.svg': { loaders: ['@svgr/webpack'], as: '*.js', }, }, }, }; export default nextConfig;