tmagic-editor/magic-admin/web/vue.config.js
2022-05-18 15:43:31 +08:00

40 lines
804 B
JavaScript

const path = require('path');
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: true,
indexPath: 'index.html',
outputDir: path.resolve(__dirname, './dist'),
devServer: {
port: 8181,
proxy: {
'/api': {
target: 'http://localhost:3001/',
ws: true,
changOrigin: true,
},
},
},
configureWebpack: {
devtool: 'source-map',
entry: '@src/main.ts',
resolve: {
alias: {
vue$: path.resolve(__dirname, './node_modules/vue/dist/vue.runtime.esm-bundler.js'),
'@src': path.resolve(__dirname, './src'),
},
},
plugins: [new MonacoWebpackPlugin()],
},
});