React-toolbox is building its styles in his own way. All styles look like this: [ link ]
This way of including apparently is not supported by mobile devices (or at least my phone which i'm building an app for). And when i check the project on the mobile device i get everything without styles.
On official react-toolbox site they include all styles as a separate .css file and everything looks good. How can i build the project in the same way?
My webpack.config's loaders css section looks like this:
{
test: /\.(scss|css)$/,
loader: 'style-loader!css-loader?sourceMap&modules&importLoaders=1&localIdentName=[name]-[local]___[hash:base64:5]!sass-loader?sourceMap'
}