11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: ['localhost', '127.0.0.1', 'secure.icynet.eu'],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|