文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vue中config目录下index.js源码分析

2023-07-05 13:58

关注

这篇文章主要介绍“vue中config目录下index.js源码分析”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“vue中config目录下index.js源码分析”文章能帮助大家解决问题。

vue的config目录下index.js

'use strict'// Template version: 1.3.1// see http://vuejs-templates.github.io/webpack for documentation.// 用于处理路径统一的问题const path = require('path')module.exports = {  // 开发环境的配置  dev: {    // Paths    assetsSubDirectory: 'static',                   // 静态资源文件夹    assetsPublicPath: '/',                          // 发布路径    // 一般解决跨域请求api    proxyTable: {        '/api': {            target: 'http://api.douban.com/v2',     // 目标url            changeOrigin: true,                     // 是否跨域            pathRewrite: {                '^/api': ''                         // 可以使用 /api 等价于 http://api.douban.com/v2            }        }    },    // Various Dev Server settings    host: 'localhost', // can be overwritten by process.env.HOST    port: 8080,                 // dev-server的端口号,可以自行更改    autoOpenBrowser: false,     // 是否自定代开浏览器    errorOverlay: true,         // 查询错误    notifyOnErrors: true,       // 通知错误    poll: false,                // poll轮询,webpack为我们提供devserver是可以监控文件改动的,有些情况下却不能工作,可以设置一个轮询解决            // https://webpack.js.org/configuration/devtool/#development    devtool: 'cheap-module-eval-source-map',        // webpack用于方便调试的配置    // If you have problems debugging vue-files in devtools,    // set this to false - it *may* help    // https://vue-loader.vuejs.org/en/options.html#cachebusting    cacheBusting: true,       // devtool的配置当文件名插入新的hash导致清除缓存时是否生成source maps,默认为true    cssSourceMap: true        // 是否开启cssSourceMap  },  // 生产编译环境下的一些配置  build: {    // 下面是相对路径的拼接    index: path.resolve(__dirname, '../dist/index.html'),    // 下面定义的是静态资源的根目录 也就是dist目录    assetsRoot: path.resolve(__dirname, '../dist'),    assetsSubDirectory: 'static',    assetsPublicPath: '/',          // 下面定义的是静态资源的公开路径,也就是真正的引用路径        productionSourceMap: true,    // https://webpack.js.org/configuration/devtool/#production    devtool: '#source-map',    // Gzip off by default as many popular static hosts such as    // Surge or Netlify already gzip all static assets for you.    // Before setting to `true`, make sure to:    // npm install --save-dev compression-webpack-plugin    productionGzip: false,                      // 是否在生产环境中压缩代码,如果要压缩必须安装compression-webpack-plugin    productionGzipExtensions: ['js', 'css'],    // 定义要压缩哪些类型的文件    // Run the build command with an extra argument to    // View the bundle analyzer report after build finishes:    // `npm run build --report`    // Set to `true` or `false` to always turn it on or off    bundleAnalyzerReport: process.env.npm_config_report     // 是否开启打包后的分析报告  }}

config中的 index.js配置项

config中index.js文件是用来配置开发环境和生产环境的配置参数 

index.js:

const path = require('path') module.exports = {  build: {       // production 环境    env: require('./prod.env'), // 使用 config/prod.env.js 中定义的编译环境    index: path.resolve(__dirname, '../dist/index.html'),//编译输入的 index.html 文件, __dirname 是node的一个全局变量,获得当前文件所在目录的完整目录名    assetsRoot: path.resolve(__dirname, '../dist'),// 编译输出的静态资源路径    assetsSubDirectory: 'static',// 编译输出的二级目录    assetsPublicPath: '/',// 编译发布的根目录,可配置为资源服务器域名或 CDN 域名    productionSourceMap: false,// 是否开启 cssSourceMap    // Gzip off by default as many popular static hosts such as    // Surge or Netlify already gzip all static assets for you.    // Before setting to `true`, make sure to:    // npm install --save-dev compression-webpack-plugin    productionGzip: false,// 是否开启 gzip    productionGzipExtensions: ['js', 'css'],// 需要使用 gzip 压缩的文件扩展名    // Run the build command with an extra argument to    // View the bundle analyzer report after build finishes:    // `npm run build --report`    // Set to `true` or `false` to always turn it on or off    bundleAnalyzerReport: process.env.npm_config_report  },  dev: {// dev 环境    env: require('./dev.env'),// 使用 config/dev.env.js 中定义的编译环境    port: process.env.PORT || 8080,// 运行测试页面的端口    autoOpenBrowser: true,//自动打开浏览器    assetsSubDirectory: 'static',// 编译输出的二级目录    assetsPublicPath: '/', // 编译发布的根目录,可配置为资源服务器域名或 CDN 域名    proxyTable: {}, // 需要 proxyTable 代理的接口(可跨域)    // CSS Sourcemaps off by default because relative paths are "buggy"    // with this option, according to the CSS-Loader README    // (https://github.com/webpack/css-loader#sourcemaps)    // In our experience, they generally work as expected,    // just be aware of this issue when enabling this option.    cssSourceMap: false // 是否开启 cssSourceMap  }}

config/prod.env.js :

module.exports = {  NODE_ENV: '"production"'}

config/dev.env.js

onst merge = require('webpack-merge')const prodEnv = require('./prod.env') module.exports = merge(prodEnv, {  NODE_ENV: '"development"'})

关于cssSourceMap的作用是,随着代码增多,我们需要对代码进行压缩。

代码压缩后进行调bug定位将非常困难,于是引入sourcemap记录压缩前后的位置信息记录,当产生错误时直接定位到未压缩前的位置,将大大的方便我们调试。

关于“vue中config目录下index.js源码分析”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网行业资讯频道,小编每天都会为大家更新不同的知识点。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯