We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
\
this is my vue.config.js
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin') module.exports = { configureWebpack: { plugins: [ new MonacoWebpackPlugin({ // available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options languages: ['javascript', 'css', 'html', 'typescript', 'json', 'text'] }) ] } }
The text was updated successfully, but these errors were encountered:
Related https://github.com/microsoft/monaco-editor-webpack-plugin/issues/152
Workaround is to pin the following:
"monaco-editor": "0.20.0", "monaco-editor-webpack-plugin": "1.9.1",
Or alternatively don't use webpack, and load via AMD instead.
Sorry, something went wrong.
Can confirm issue is fixed in latest version of monaco-editor (>=0.27.0)
If using yarn, you can pin via:
"resolutions": { "vue-monaco/monaco-editor": "^0.27.0" }
Related https://github.com/microsoft/monaco-editor-webpack-plugin/issues/152 Workaround is to pin the following: "monaco-editor": "0.20.0", "monaco-editor-webpack-plugin": "1.9.1", Or alternatively don't use webpack, and load via AMD instead.
Do you have an example of how to do it?
No branches or pull requests
this is my vue.config.js
The text was updated successfully, but these errors were encountered: