blob: 498156c8184284cac2cb6af1da495b40de13cc27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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',
},
},
},
/* config options here */
};
export default nextConfig;
|