You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
785 B
34 lines
785 B
//@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',
|
|
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);
|