Supporting old browsers seems impossible when using nextjs v15 with App router.
browserslist in package.json doesn't do anything, changing tsconfig.json compiler option target doesn't affect build output, changing webpack config in next.config.js doesn't do much either especially with code bundled from node_modules. What is the best way to support old browser (Chrome 59/Opera 46) while using latest nextjs?
Two errors I'm constantly getting are globalThis is not defined and Unexpected token ...
I tried installing polyfills and including them in specific pages and root layout, but it doesn't change anything.