vue3-histogram-slider
Version:
Range slider with histogram for Vue 3
23 lines (21 loc) • 393 B
JavaScript
module.exports = {
devServer: {
port: 8000
},
chainWebpack: (config) => {
config.resolve.alias.set('vue', '@vue/compat')
config.module
.rule('vue')
.use('vue-loader')
.tap((options) => {
return {
...options,
compilerOptions: {
compatConfig: {
MODE: 2
}
}
}
})
}
}