22 lines
554 B
JavaScript
22 lines
554 B
JavaScript
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
|
|
//https://github.com/Microsoft/monaco-editor-webpack-plugin
|
|
languages: [
|
|
"javascript",
|
|
"css",
|
|
"html",
|
|
"typescript",
|
|
"json",
|
|
"handlebars"
|
|
]
|
|
})
|
|
]
|
|
},
|
|
|
|
transpileDependencies: ["vuetify"]
|
|
};
|