//@ts-check // eslint-disable-next-line @typescript-eslint/no-var-requires const {withNx} = require('./with-nx.js'); /** * @type {import('@nrwl/next/plugins/with-nx').WithNxOptions} **/ const nextConfig = { reactStrictMode: true, poweredByHeader: false, output: 'standalone', compiler: { styledComponents: true }, nx: { // Set this to true if you would like to to use SVGR // See: https://github.com/gregberge/svgr svgr: false }, images: { loader: "default", remotePatterns: [ { protocol: 'https', hostname: 'mcep.nasercloud.fr', }, { protocol: 'https', hostname: 'admin.mcep.nasercloud.fr', } ], domains: ["localhost", "127.0.0.1", "admin.mcep.nasercloud.fr", "mcep.nasercloud.fr"], } }; module.exports = withNx(nextConfig);