9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
const { composePlugins, withNx } = require('@nx/next');
|
|
|
|
/** @type {import('@nx/next/plugins/with-nx').WithNxOptions} */
|
|
const nextConfig = {
|
|
nx: { svgr: false },
|
|
};
|
|
|
|
module.exports = composePlugins(withNx)(nextConfig);
|