Skip to content

configureWebpack 配置报错 module.rules.push, plugins.push #59

Open
@haiting

Description

@haiting

代码:

configureWebpack(webpackConfig) {
    if (process.env.NO_CHUNK === 'false' || !disableDynamicImport) {
      // 配置第三方依赖包入口
      webpackConfig.entry.vendor = Object.keys(packageJson.dependencies); // 获取生产环境依赖库
      // 配置 chunk 输出的文件命名格
      webpackConfig.output.chunkFilename = fileName;
    }
    Object.assign(webpackConfig, {
      entry: {
        app: ['babel-polyfill', './src/main.js']
      },
      name: name,
      // 开发生产共同配置
      resolve: {
        alias: {
          '@': path.resolve(__dirname, './src')
          // '@c': path.resolve(__dirname, './src/components'),
          // '@p': path.resolve(__dirname, './src/pages')
        } // 别名配置
      }
    });

    webpackConfig.module.rules.push({
      test: /\.js$/,
      loader: 'babel-loader',
      include: [path.resolve('node_modules/vcolorpicker')]
    });
    webpackConfig.module.rules.push({
      test: /\.mjs$/,
      include: /node_modules/,
      type: 'javascript/auto'
    });
    webpackConfig.plugins.push(
      new AntDesignThemePlugin(options),
      // 收集项目信息插件
      new SinobestGatherProjectInfo()
    );

error when starting dev server: TypeError: Cannot read properties of undefined (reading 'rules')
error when starting dev server: TypeError: Cannot read properties of undefined (reading 'push')

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions