美文网首页
vue多页面配置

vue多页面配置

作者: 刘员外__ | 来源:发表于2020-08-09 13:57 被阅读0次
    'use strict'
    
    const path = require('path')
    
    module.exports = {
      entry: {
        // 多页面入口配置
        index: './src/index.js',
        search: './src/search.js'
      },
      output: {
        path: path.join(__dirname, 'dist'),
        // 多页面打包,需要 [name] 占位符来自动实现多个打包出口
        filename: '[name].js'
      },
      mode: 'production'
    }
    

    相关文章

      网友评论

          本文标题:vue多页面配置

          本文链接:https://www.haomeiwen.com/subject/vklnrktx.html