I’m trying to integrate Monaco editor in nx mono repo MFE in angular. But I’m getting some errors related to the loader.
Error: Module parse failed: Unexpected token (6:0)
You may need an appropriate loader to handle this file type,currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| ——————————————————————————————–/
|
.quick-input-widget {
}
I think this is happening because of the following reason :
The issue I’m encountering with the Monaco Editor is due to Webpack not being configured with the appropriate loaders to parse CSS files.
How to fix this issue?
Any help would be appreciated!!