Having a tough time adding this to a project - react-webpack-node
Able to log "opts", "css", and "styles" output, so it's getting good data.
Wondering if the Server Side Rendering (injects all HTML onLoad) is what might be blocking this package from showing any visible browser activity?
postCSS setup:
[
require('postcss-import')({
path: path.join(__dirname, '..', 'app', 'css'),
addDependencyTo: webpack
}),
require('postcss-cssnext')({
browsers: ['> 1%', 'last 2 versions']
}),
require('postcss-browser-reporter'),
require('postcss-reporter')({ clearMessages: true })
]
Thx
Having a tough time adding this to a project - react-webpack-node
Able to log "opts", "css", and "styles" output, so it's getting good data.
Wondering if the Server Side Rendering (injects all HTML onLoad) is what might be blocking this package from showing any visible browser activity?
postCSS setup:
Thx