问题 This is my webpack.config.js file: var ExtractTextPlugin = require('extract-text-webpack-plugin'), webpack = require('webpack'); module.exports = { entry: [ './src/app.js', ], output: { path: __dirname + '/../web/js', filename: 'build.js', }, module: { loaders: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' }, { test: /\.css$/, loader: ExtractTextPlugin.extract('style-loader', 'css-loader') }, { test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: "url?limit=5000" } ] },