출처 : https://github.com/leehan0617/vue-admin-sample/blob/master/vue.config.js // cumstom webpack을 추가하기 위해선 vue.config.js 파일을 만들고 이곳에다가 plugin설정을 하면된다. const webpack = require('webpack') module.exports = { configureWebpack: (config) => { // 공통환경 config.plugins = [ ...config.plugins, new webpack.ProvidePlugin({ $: 'jquery', jquery: 'jquery', 'window.jQuery': 'jquery', jQuery: 'jquery', moment: 'mo..