项目文件引用rctui(reactui)库的时候,webpack打包的的时候报错,显示编译不通过

如题:
webpack版本:3.0
编译是不通过:报错如下

clipboard.png

如果把exclude: /node_modules/,去掉编译通过:但是浏览器报错如下:
clipboard.png

webpack.base.config.js配置

const CleanWebpackPlugin = require('clean-webpack-plugin');
const webpack = require('webpack');
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');

const SRC_PATH = path.resolve('./src');
const ASSETS_BUILD_PATH = path.resolve('./dist');
const ASSETS_PUBLIC_PATH = '/assets/';

module.exports = {

context: SRC_PATH,
entry: {
    app: './app.js',
},
output: {
    path: ASSETS_BUILD_PATH,
    filename: './[name].js',
    publicPath: ASSETS_PUBLIC_PATH,
    chunkFilename: '[name].chunk.js',
},
resolve: {
    extensions: ['.js', '.jsx', '.css', '.scss', '.vue'],
    modules: ['node_modules', path.join(__dirname, './node_modules')],
},
module: {
    rules:[]
},
plugins: [
    new CleanWebpackPlugin([ASSETS_BUILD_PATH], { verbose: false }),
    new webpack.optimize.ModuleConcatenationPlugin(),
    new CopyWebpackPlugin([{
        from: path.resolve(__dirname, './dll'),
        to: ASSETS_BUILD_PATH,
        ignore: ['.*'],
    }]),
    new webpack.DllReferencePlugin({
        context: __dirname,
        manifest: require('./manifest.json'),
    }),
],

};

webpack.dev.config.js配置文件

const webpack = require('webpack');
const path = require('path');
const config = require('./webpack.base.config.js');
const ExtractTextPlugin = require('extract-text-webpack-plugin');

config.devServer = {

contentBase: './',
hot: true,
publicPath: '/assets/'

};

config.module.rules.push({
test: /.js(x)*$/,
exclude: /node_modules/,
loader: 'babel-loader?cacheDirectory=true'
}, {

 test: /\.json$/,
 loader: 'json-loader?cacheDirectory=true',

},{

test: /\.css$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
    fallback: 'style-loader',
    use: ['css-loader', 'postcss-loader']
})

}, {

test: /\.(sass|scss)$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
    fallback: 'style-loader',
    use: ['css-loader', 'sass-loader']
})

});

Object.keys(config.entry).forEach((key) => {

if (Array.isArray(config.entry[key])) {
    config.entry[key].unshift(
        'webpack-dev-server/client?http://localhost:8080',
        'webpack/hot/only-dev-server'
    );
}

});

config.plugins.push(

new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin({
    filename: '[name].css',
    allChunks: true,
    ignoreOrder: true
})

);

module.exports = config;

阅读 1.6k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题