diff --git a/client/webpack.config.js b/client/webpack.config.js index 552076e..9d667c2 100644 --- a/client/webpack.config.js +++ b/client/webpack.config.js @@ -26,8 +26,16 @@ module.exports = { module: { loaders: [ { test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ }, - { test: /\.jsx$/, loader: 'babel-loader', exclude: /node_modules/ } + { test: /\.jsx$/, loader: 'babel-loader', exclude: /node_modules/ }, + { test: /\.scss$/, loader: 'css-loader', exclude: /node_modules/ }, + { test: /\.css$/, loader: 'style-loader!css!scss', exclude: /node_modules/ } + // { test: /\.css$/, loader: 'style-loader!css-loader!', exclude: /node_modules/ }, + // query: { + // presets: ['es2015'] + // } + + // { test: /\.css-loader$/, loader: 'style-loader!css-loader', exclude: /node_modules/ } ] }, plugins: [HtmlWebpackPluginConfig] -} \ No newline at end of file +}; \ No newline at end of file