socket.emit('channelname', { // some data })
I already have it like below
webpackConfig.postcss = [
cssnano({
autoprefixer: {
add: true,
remove: true,
browsers: ['> 1%']
},
discardComments: {
removeAll: true
},
discardUnused: false,
mergeIdents: false,
reduceIdents: false,
safe: true,
sourcemap: true
})
]
how do I add cssnext?
I am basically trying to transpile all cssnext syntax like var(--something)
into standard CSS