You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tanghe-report/report-ui/webpack.config.js

17 lines
360 B
JavaScript

3 years ago
'use strict'
const path = require('path')
3 years ago
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
3 years ago
module.exports = {
resolve: {
extensions: ['.js', '.ts', '.vue', '.json', '.css', '.node', '.sass'],
alias: {
'@': path.resolve('src'),
'vue$': 'vue/dist/vue.esm.js'
}
3 years ago
},
plugins: [
new MonacoWebpackPlugin()
]
3 years ago
}