Files
imphnen-frontend-service/apps/landing/next.config.js
T
2025-11-24 10:48:09 +07:00

11 lines
263 B
JavaScript

const { composePlugins, withNx } = require('@nx/next');
const path = require('path');
/** @type {import('@nx/next/plugins/with-nx').WithNxOptions} */
const nextConfig = {
nx: {},
output: 'standalone',
};
module.exports = composePlugins(withNx)(nextConfig);