@hcflgov/vue-html-wrapper
Version:
A Vue.js plugin
21 lines (19 loc) • 362 B
JavaScript
const webpack = require('webpack')
module.exports = {
css: {
extract: true
},
filenameHashing: false,
productionSourceMap: false,
publicPath: './',
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
jquery: 'jquery',
'window.jQuery': 'jquery',
jQuery: 'jquery'
})
]
}
}