Fortunato

Results 1 comments of Fortunato

For now I work around this by overriding the webpack config like so: ```typescript // apps/my-app/webpack.config.js const swcConfig = JSON.parse(fs.readFileSync('apps/my-app/.swcrc', 'utf-8')); config.module.rules.find((rule) => rule?.loader?.includes('swc-loader')).options = swcConfig; ``` (I have a...