icynet-admin/next.config.js

11 lines
217 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: {
2022-09-11 09:44:43 +00:00
domains: ['localhost', '127.0.0.1', 'secure.icynet.eu'],
2022-08-29 18:09:28 +00:00
},
};
2022-08-29 14:53:03 +00:00
2022-08-29 18:09:28 +00:00
module.exports = nextConfig;