* fix: docker * fix landing * chore(landing): add outputFileTracingRoot to next config * ci: add github workflow for landing deployment via ssh and docker compose * chore: add docker-compose file for landing app build and run * feat docker
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
const { composePlugins, withNx } = require('@nx/next');
|
|
const path = require('path');
|
|
|
|
/** @type {import('@nx/next/plugins/with-nx').WithNxOptions} */
|
|
const nextConfig = {
|
|
nx: { svgr: false },
|
|
output: 'standalone',
|
|
};
|
|
|
|
module.exports = composePlugins(withNx)(nextConfig);
|