I tried to find and run some projects with GitHub, but nothing works. Always always some mistakes. In issues just stupidly close your question.
Show a normal example where it works?
I reviewed all the tutorials, but nothing works from there either!
I'm so sick of it all. Some kind of creepy crutch and stupid technology this react!
webpack.config.js:
var ExtractTextPlugin = require('extract-text-webpack-plugin'); module.exports = { entry: './app/client.js', output: { filename: 'bundle.js', path: 'public/js' }, module: { loaders: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader', query: { presets: ['react', 'es2015', 'stage-1'] } }, { test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader') } ], }, plugins: [ new ExtractTextPlugin("styles.css"), ] };
styles.cssyoustyles.cssfile? I have almost the same config, only forlesswith one loader added. I do not know what can not work for you. Maybe you just do not connect thestyles.cssfile to the page? And react is not a crutch technology) - Vasily Barbashev