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
|
|
|
|
2025-05-11 21:55:20 +07:00
|
|
|
/** @type {import('@nx/next/plugins/with-nx').WithNxOptions} */
|
2025-04-26 20:32:58 +07:00
|
|
|
const nextConfig = {
|
2025-05-11 21:55:20 +07:00
|
|
|
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);
|