当前位置:   article > 正文

Vite2+Vue2 配置vite.config.js增加资源路径前缀_vite.config.js publicpath

vite.config.js publicpath

打包后前缀的问题

想要在打包后html文件的资源路径添加前缀,但是之前的Vue CLI 是使用publicPath 属性,在vite中就不是这个了,问了chatGPT后,回答是:
在当使用 Vite 打包应用程序时,可以使用 build.publicDir或者build.base配置选项指定要复制到构建输出目录的公共资源目录,这些资源包括 index.html 文件、静态资源文件、图标文件等。但是,Vite 默认情况下不支持类似 Vue CLI 中的 publicPath选项,这意味着所有静态资源的引用路径都将是相对路径。

但是我添加了build.publicDirbuild.base没有效果,打算在打包后使用脚本来自动添加。
vite.config.js

import { defineConfig } from 'vite' // 动态配置函数
import { createVuePlugin } from 'vite-plugin-vue2'

// 打包后手动添加前缀脚本
const addPrefixPlugin = (prefix) => ({
    name: 'add-prefix-plugin',
    async transformIndexHtml(html) {
        return html.replace(/(href|src)="(?!http|\/\/)/g, `$1="${prefix}`)
    },
})
export default () =>
    defineConfig({
        outDir: 'dist', // 打包输出目录
        minify: true, // 是否压缩代码
        sourceMap: true, // 是否生成sourceMap
        target: 'browser', // 打包目标
        plugins: [createVuePlugin(), addPrefixPlugin('/goldCourse')],
        server: {
            open: true, //自动打开浏览器
            proxy: {
                // 配置多个!
                "/api": {
                    target: "http://192.168.0.111:8080", //测试环境
                    // 允许跨域
                    changeOrigin: true,
                    rewrite: (path) => path.replace(/^\/api/, ""),
                },
            },
        },
        resolve: {
            // 别名
            alias: [
                {
                    find: '@',
                    replacement: '/src'
                }
            ]
        },
    })


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/338777
推荐阅读
相关标签
  

闽ICP备14008679号