Skip to content

Instantly share code, notes, and snippets.

@rafaelgfirmino
Created February 2, 2019 00:01
Show Gist options
  • Save rafaelgfirmino/407bbb9215c0da2ffbc1c5a2a1827530 to your computer and use it in GitHub Desktop.
Save rafaelgfirmino/407bbb9215c0da2ffbc1c5a2a1827530 to your computer and use it in GitHub Desktop.
const webpack = require('webpack');
// used in vue cli 3
module.exports = {
configureWebpack: {
resolve: {
extensions: ['.js'],
alias: {
'jquery': 'jquery/dist/jquery.min',
}
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jquery: 'jquery',
'window.jQuery': 'jquery',
jQuery: 'jquery'
})
]
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment