23 lines
503 B
JavaScript
23 lines
503 B
JavaScript
//@ts-check
|
|||
|
|
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||
|
|
const { composePlugins, withNx } = require('@nx/next');
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @type {import('@nx/next/plugins/with-nx').WithNxOptions}
|
||
|
|
**/
|
||
|
|
const nextConfig = {
|
||
|
|
nx: {
|
||
|
|
// Set this to true if you would like to to use SVGR
|
||
|
|
// See: https://github.com/gregberge/svgr
|
||
|
|
svgr: false,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
const plugins = [
|
||
|
|
// Add more Next.js plugins to this list if needed.
|
||
|
|
withNx,
|
||
|
|
];
|
||
|
|
|
||
|
|
module.exports = composePlugins(...plugins)(nextConfig);
|