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.
nx-guitar-school/apps/vendors/next.config.js

37 lines
847 B

//@ts-check
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { withNx } = require('@nrwl/next/plugins/with-nx');
/**
* @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);