webpack.config.js:解压缩css和javascript的设置

时间:2015-09-11 03:43:17

标签: webpack

背景:这是我第一次见到webpack.config.js

这是webpack.config.js https://github.com/marcom-unimelb/unimelb-design-system/blob/master/assets/webpack.config.js

基于上面的配置生成的输出javascript和css都被缩小了。我需要让他们无根据,并想知道我该怎么做?

我的理解是,我需要在这里做点什么。

preLoaders: [
      {
        test: /\.js$/, // include .js files
        exclude: /node_modules|vendor/, // exclude any and all files in the node_modules folder
        loader: "jshint-loader"
      }
    ],

在这里:

{
        test: /\.scss$/,
        loader: ExtractTextPlugin.extract("style-loader", "css-loader?-minimize!autoprefixer-loader!sass-loader")
      },
      {
        test: /\.css$/,
        loader: ExtractTextPlugin.extract("style-loader", "css-loader?-minimize!autoprefixer-loader")
      },

0 个答案:

没有答案