webpack sass-loader not generating a css file
问题 I can't figure out how to render a css file with the webpack sass-loader. Here's what my webpackconfig.js looks like: module.exports = { context: __dirname + "/app", entry: { javascript: "./app.js", html: "./index.html" }, output: { filename: "app.js", path: __dirname + "/dist" }, module: { loaders: [ //JAVASCRIPT { test: /\.js$/, exclude: /node_modules/, loaders: ["babel-loader"], }, //Index HMTML { test: /\.html$/, loader: "file?name=[name].[ext]", }, //Hotloader { test: /\.js$/, exclude: