入口点- webpack.config.js与vue.config.js的比较

flvtvl50  于 2022-11-13  发布在  Webpack
关注(0)|答案(2)|浏览(215)

webpack.config.js文件中,我们可以如下设置入口文件。

module.exports = (env = {}, argv = {}) => {
        const config = {
            entry: {
                main: './src/js/main.js'                    
            },
        }
    }

但是在vue.config.js文件中,如何声明入口文件呢?我已经签入了doc.但是有这样的属性。

z5btuh9x

z5btuh9x1#

Vue CLI 3集成了webpack-chain库,作为配置Webpack的另一种方式。
例如,您的配置文件可能如下所示:

chainWebpack: config => {
  // clear the existing entry point
  config
    .entry('main')
      .clear()

  // add your custom entry point
  config
    .entry('main')
      .add('./src/js/main.js')
}

请参阅有关配置入口点的部分。

lp0sw83n

lp0sw83n2#

对于vue-cli 4,它是:

chainWebpack: (config) => {
  // Clear the existing entry point
  config.entry('app').clear()

  // Add the custom entry point
  config.entry('app').add('./src/js/main.js')
}

相关问题