mirror of
https://github.com/shuguangnet/Code-Master.git
synced 2025-01-23 07:58:44 +08:00
12 lines
312 B
JavaScript
12 lines
312 B
JavaScript
|
const { defineConfig } = require("@vue/cli-service");
|
||
|
// const MonacoWebpackPlugin =require("monaco-editor-webpack-plugin");
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
transpileDependencies: true,
|
||
|
lintOnSave: false,
|
||
|
// chainWebpack(config) {
|
||
|
// config.plugin("monaco").use(new MonacoWebpackPlugin());
|
||
|
// },
|
||
|
});
|
||
|
|