开发问题记录目录存档
开发问题:引入 Spring AI 依赖报错Could not find artifact org.springframework.ai...
2025年01月13日 by emanjusaka 阅读 5 点赞 0
标签:
SpringAI
,
aliyunmaven
,
error
发布在
开发问题记录
开发问题:GitHub Actions上传打包缺失.vite/mainfest.json文件
2024年12月16日 by emanjusaka 阅读 21 点赞 0
标签:
github-actions
,
upload-artifact
发布在
开发问题记录
开发问题:vue运行报错.cptable in ./node_modules/xlsx-style...
2024年11月14日 by emanjusaka 阅读 26 点赞 0在引入了 xlsx-style 组件的 Vue 项目中可能会出现错误提示:`./cptable in ./node_modules/xlsx-style/dist/cpexcel.js`。针对这个问题,有两种解决方案:一是修改源码,需要在`./node_modules/xlsx-style/dist/cpexcel.js`文件中进行特定修改;二是配置`vue.config.js`文件,通过添加 externals 配置来解决。推荐使用第二种方案,因为第一种修改源码每次重新安装都需再次修改,且不具通用性,而第二种方案配置后可以通用,避免了频繁修改的麻烦。
标签:
vue
,
xlsx-style
发布在
开发问题记录