I am using next js 13 with app router and I have an build issue in aws ampilfy. From what I read I need to add this parameter into my build file swcMinify: false
but this is my current next js config
/** @type {import('next').NextConfig} */
const nextConfig = {};
const withNextIntl = require('next-intl/plugin')(
// This is the default (also the src folder is supported out of the box)
'./src/i18n.ts'
);
module.exports = withNextIntl(nextConfig);
How to properly add the parameter