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

11 lines
276 B
JavaScript
Raw Normal View History

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