Created
February 2, 2019 00:01
-
-
Save rafaelgfirmino/407bbb9215c0da2ffbc1c5a2a1827530 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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