Files
imphnen-frontend-service/apps/landing/next.config.js
T

9 lines
222 B
JavaScript
Raw Normal View History

2025-04-26 20:32:58 +07:00
const { composePlugins, withNx } = require('@nx/next');
/** @type {import('@nx/next/plugins/with-nx').WithNxOptions} */
2025-04-26 20:32:58 +07:00
const nextConfig = {
nx: { svgr: false },
2025-04-26 20:32:58 +07:00
};
2025-05-25 15:13:44 +07:00
module.exports = composePlugins(withNx)(nextConfig);