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"], pwa: { workboxPluginMode: "InjectManifest", workboxOptions: { swSrc: "./src/sw.js", swDest: "service-worker.js" } } };