I’m trying to use https://github.com/LouisBarranqueiro/reapop in my Meteor app but I have some trouble to get it working. It is supposed to be installed with a theme: https://github.com/LouisBarranqueiro/reapop-theme-wybo which tries to load some css via:
var css = require('./lib/styles.css');
and then uses it like this:
var notificationsSystemClassName = css['notifications-system'];
But this doesn’t work in Meteor, I guess it requires https://github.com/webpack-contrib/style-loader but I have no idea how to integrate this in Meteor.
Any tips?