icynet-admin/next.config.js

11 lines
210 B
JavaScript
Raw Normal View History

2022-08-29 14:53:03 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
2022-08-29 18:09:28 +00:00
images: {
domains: ['localhost', '127.0.0.1', 'icynet.eu'],
},
};
2022-08-29 14:53:03 +00:00
2022-08-29 18:09:28 +00:00
module.exports = nextConfig;