Skip to content

Commit adeb930

Browse files
committed
Remove css config
1 parent 6b18b84 commit adeb930

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

packages/cycle-scripts/configs/webpack.config.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@ process.noDeprecation = true
77
const { createConfig, defineConstants, env, entryPoint, setOutput, sourceMaps, addPlugins } = require('@webpack-blocks/webpack2');
88
const babel = require('@webpack-blocks/babel6');
99
const devServer = require('@webpack-blocks/dev-server2');
10-
const postcss = require('@webpack-blocks/postcss');
11-
const sass = require('@webpack-blocks/sass');
1210
const typescript = require('@webpack-blocks/typescript');
1311
const tslint = require('@webpack-blocks/tslint');
14-
const extractText = require('@webpack-blocks/extract-text2');
15-
const autoprefixer = require('autoprefixer');
1612
const webpack = require('webpack');
1713
const HtmlWebpackPlugin = require('html-webpack-plugin');
1814
const CopyWebpackPlugin = require('copy-webpack-plugin');
@@ -51,11 +47,6 @@ module.exports = function(language) {
5147
entryPoint(path.join(process.cwd(), 'src', 'index' + ending)),
5248
setOutput(path.join(process.cwd(), 'build', 'bundle.[hash].js')),
5349
babel(),
54-
sass(),
55-
extractText('[name].[contenthash].css', 'text/x-sass'),
56-
postcss([
57-
autoprefixer({ browsers: ['last 2 versions'] })
58-
]),
5950
defineConstants({
6051
'process.env.NODE_ENV': process.env.NODE_ENV
6152
}),

0 commit comments

Comments
 (0)