直接百度到了,配置publicPath为"./",直接修改资源引入的路径。 于是代码被改为: const { defineConfig }= require('@vue/cli-service') module.exports=defineConfig({ publicPath:"./", transpileDependencies:true, chainWebpack: config=>{ config.module.rule('images').test(/\.(mp4|png|jpe?g|gif|web...
截图中路径的/vip/友友们可以忽略(因项目需要vue.config配置了根路径 publicPath: '/vip/') 在路由鉴权文件中打印的 访问入口2 http://localhost:8080/vip/sys.html 各项配置都展示对的,且刷新没有问题 部署到服务器(nginx) 这是我本地的nginx.conf (友友们可以把/vip/替换为/) 入口1 且刷新正常显示 dem...
publicPath: './', // 基本路径 outputDir: 'dist', // 输出文件目录 lintOnSave: false, // eslint-loader 是否在保存的时候检查 assetsDir: 'static', // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。 pages: undefined, // 以多页模式构建应用程序。 runtimeCompiler...
assetsSubDirectory: 把所有的静态资源打包到 dist下的 assets文件夹下 assetsPublicPath :代表生成的index.html文件,里面引入资源时,路径前面要加上 ./hello/,也就是assetsPublicPath的值 `` 由此可见 ,我...
constpath=require("path")constPrerenderSPAPlugin=require("prerender-spa-plugin-next")// 可选constrenderer=require("@prerenderer/renderer-puppeteer")module.exports={lintOnSave:"warning",publicPath:"/",assetsDir:"static",configureWebpack(config){if(process.env.NODE_ENV==="production"){constprerender...
publicPath: "/assets/" 你的包现在可以通过 http://localhost:8080/assets/bundle.js 访问。 确保publicPath 总是以斜杠(/)开头和结尾。 也可以使用一个完整的 URL。这是模块热替换所必需的。 这里是重点 publicPath: "http://localhost:8080/assets/" bundle 可以通过 http://localhost:8080/assets/bundle....
env.OUTPUT_DIR, // vue-cli publicPath option publicPath: process.env.VUE_APP_PUBLIC_PATH }; I try these value for process.env.VUE_APP_PUBLIC_PATH ""(empty string) e2 (can not pass vue-cli check) e2/ http://localhost:8083/e2/ Like i say, __webpack_require__.p is always a ...
'Zone_z2':'us-east-1',awsDistributionId:'xxxx',// aws的失效idenabledRefresh:true,publicPath:process.env.logBaseUrl,uploadTarget:path.resolve(__dirname,'./dist'),appName:webpackEntry.EntryConfigs[argv.e].filename.replaceAll('.html',''),fileLogPath:'log/',env:isBuildDev?'development':...
assetsPublicPath: 'https://cdn.xxxxx.com', // 添加路径前缀 1. 2. 3. 这样就可以修改掉打包的静态资源的地址了,没有修改之前打包完为 admin/static 修改之后为 https://cdn.xxxxx.com/admin/s... 上线之后发现字体文件改用cdn会有跨域问题,nginx设置也可以。但是我这里是把字体单独处理了...
vue-cli打包压缩(npmrunbuild)⽂件后,默认根⽬录修改vue-cli 打包压缩(npm run build)⽂件后,默认根⽬录修改,解决前后端代码结合的路径问题。将config/index.js⽂件中的assetsPublicPath 值修改为你需要的根⽬录,原来默认是‘/’,加上"XXX/",“XXX”是本项⽬的项⽬名,服务URL默认根⽬...