Blogger Information
Blog 67
fans 0
comment 2
visits 72322
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
VUE3 vue.config.js配置
搁浅
Original
647 people have browsed it

提示:npm配置的写法,vite大致差不多,名称不太一样。

devServer在vite里面是server
  1. const { defineConfig } = require('@vue/cli-service')
  2. const path = require('path');
  3. const webpack = require('webpack');
  4. const developmentPath='/';//开发环境-npm run serve时引用文件路径
  5. const productionPath='./';//生产环境-npm run build打包后引用文件路径
  6. const isProduction=process.env.NODE_ENV === 'production'//是否生产环境
  7. // const proxy=function (){//封装多个跨域请求
  8. // let apiPathArr=['/api','/code','/admin']
  9. // let proxys={}
  10. // for(let i=0;i<apiPathArr.length;i++){
  11. // proxys[apiPathArr[i]]={
  12. // target: 'http://apis.juhe.cn',
  13. // ws: false,
  14. // changeOrigin: true,
  15. // pathRewrite:{
  16. // [`^${apiPathArr[i]}`]:apiPathArr[i]
  17. // }
  18. // }
  19. // }
  20. // return proxys
  21. // }()
  22. const os = require("os");//导入网络配置所有参数
  23. let needHost = "0.0.0.0";
  24. try {
  25. let network = os.networkInterfaces();
  26. needHost = network[Object.keys(network)[0]][1].address;//获取当前IP地址
  27. } catch {
  28. needHost = "localhost";
  29. }
  30. module.exports = defineConfig({//不用defineConfig也可以,使用会增加提示。
  31. transpileDependencies: false,
  32. // baseURL:'./' // vue-cli版本是3.2.0以前的,baseUrl / publicPath
  33. // publicPath:'./',
  34. /**
  35. *一、publicPath属性适用于vue-cli 高于3.2.0的项目。公共路径:项目部署的地址,开发的时候用/,生产的时候./,在历史模式中要是反着写开发的时候用过./刷新会错误,/生产后打开会白屏,或者路径错误。
  36. *二、如果服务器有多个VUE项目,服务器下面会多一级目录,这里则需要写加上文件夹名字比如'web2',所有访问路径都会在前面加上web2,访问的时候就会是web2/static/......,不然会访问不到所有的静态文件。
  37. */
  38. publicPath: isProduction ? productionPath: developmentPath,
  39. outputDir: 'dist',// 项目的打包地址(默认dist),在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)
  40. indexPath:'index.html',// 指定生成的 index.html 的输出路径 (相对于 outputDir),不写默认index.html。
  41. assetsDir: 'static',// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下),相对于outputDir目录。
  42. //source map的作用就是定位浏览器控制台输出语句在项目文件的位置多少行
  43. productionSourceMap: !isProduction,// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建,不写默认true
  44. parallel: require("os").cpus().length > 1, // 是否为 Babel 或 TypeScript 使用 thread-loader。该选项在系统的 CPU 有多于一个内核时自动启用,仅作用于生产构建。
  45. // false: 关闭每次保存都进行检测
  46. // true: 开启每次保存都进行检测,效果与warning一样
  47. // warning: 开启每次保存都进行检测,lint 错误将显示到控制台命令行,而且编译并不会失败。
  48. // error: 开启每次保存都进行检测,lint 错误将显示到浏览器页面上,且编译失败。
  49. // default: 同’error’
  50. lintOnSave: !isProduction,// 是否在保存的时候检查eslint验证
  51. filenameHashing:true,//关闭静态文件名为哈希,无法使用就false关闭,不写默认true
  52. devServer: {// webpack-dev-server 代理配置相关配置
  53. open: true,// 编译后,是否后自动打开浏览器
  54. host:needHost,// 浏览器打开的域名
  55. https: false,// 是否是https
  56. port: 8080,// 端口号
  57. hot: true,//hot配置是否启用模块的热替换功能,devServer的默认行为是在发现源代码被变更后,通过自动刷新整个页面来做到事实预览,开启hot后,将在不刷新整个页面的情况下通过新模块替换老模块来做到实时预览。
  58. headers: {
  59. 'Access-Control-Allow-Origin':'*'// 允许被主应用跨域fetch请求到
  60. },
  61. // proxy,
  62. proxy: {// 代理匹配规则
  63. '/api': {// 请求时开始匹配的url
  64. target: 'http://apis.juhe.cn',// 要访问的跨域的域名
  65. ws: false,// 是否代理 websocket
  66. secure:false,// 是否https协议,false则http
  67. changeOrigin: true,// 是否跨域
  68. // toProxy: false,// 是否传递绝对URL作为路径(对代理很有用),可不写。
  69. // prependPath: true,// 默认值:true 指定是否将目标的路径添加到代理路径,可不写。
  70. // ignorePath: false,// 默认值:false 指定是否忽略传入请求的代理路径,可不写。
  71. // agent:{},// 传递给http(s).request的对象,使用才写,不然报错。
  72. // ssl:{},// 传递给https.createServer()的对象,使用才写,不然报错。
  73. pathRewrite: {//重写路径,请求的时候使用这个,
  74. '^/api': ''//把 /api 变为空字符串
  75. }
  76. },
  77. }
  78. },
  79. css: {// css相关配置
  80. extract: false, // 是否使用css分离插件 ExtractTextPlugin
  81. sourceMap: true, // 是否开启source maps,开启可能会影响构建性能,可以明确的指导css代码在项目文件中的位置。使用css.sourceMap时,我们建议关闭css.extract
  82. loaderOptions: {
  83. scss: {
  84. // 全局sass变量,使用时候<style lang="scss">//</style>里面要有内容,不然不生效
  85. //sass-loader 8.0.0以前版本 , v8- - data, v8 - prependData, v10+ - additionalData
  86. additionalData: `@import "@/assets/css/reset.scss";`, //注意配置的键名
  87. }
  88. }
  89. },
  90. pwa: {// PWA 插件传递选项。
  91. iconPaths: {//ico图标
  92. favicon32: 'favicon.ico',
  93. favicon16: 'favicon.ico',
  94. appleTouchIcon: 'favicon.ico',
  95. maskIcon: 'favicon.ico',
  96. msTileImage: 'favicon.ico',
  97. }
  98. },
  99. /*
  100. *chainWebpack通过链式编程的形式,来修改默认的webpack配置
  101. *configureWebpack通过操作对象的形式,来修改默认的webpack配置
  102. *使用configureWebpack对象,下面可以直接按照webpack中的写法进行编写
  103. *编写的内容,最终会被webpack-merge插件合并到webpack.config.js主配置文件中
  104. */
  105. configureWebpack: {
  106. resolve: {
  107. alias:{
  108. '@': path.resolve('src'),
  109. 'assets' :'@/assets',
  110. 'components':'@/components',
  111. 'network':'@/network',
  112. 'utils':'@/utils',
  113. 'views':'@/views',
  114. }
  115. },
  116. module: {
  117. rules: [
  118. {
  119. test: /\.(png|jpe?g|gif|webp|avif)(\?.*)?$/,
  120. type: 'asset',
  121. parser: {
  122. dataUrlCondition: {
  123. // 这里我将默认的大小限制改成6k。
  124. // 当图片小于6k时候,使用base64引入图片;大于6k时,打包到dist目录下再进行引入
  125. maxSize: 1024 * 6
  126. }
  127. }
  128. }
  129. ]
  130. },
  131. /*
  132. *当然要使用jquery,需要npm安装下,即npm i jquery -S,现在你就可以在任意vue页面中不需要import导入jquery就能使用了。
  133. *也可以引入自定义的方法到全局
  134. */
  135. plugins: [
  136. new webpack.ProvidePlugin({//默认情况下,模块解析路径为当前文件夹(./**)和node_modules
  137. $: "jquery",
  138. jQuery: "jquery",
  139. utils: path.resolve(path.join(__dirname, '','src/utils/index.js'))//通过路径引入全局方法
  140. })
  141. ]
  142. },
  143. pluginOptions:{//第三方插件配置
  144. },
  145. })
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post