summaryrefslogtreecommitdiff
path: root/next.config.ts
blob: 78ccaf3dd2ac52c8a679d3fbe78d84a8c58e30fa (plain)
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;