Zuo Jt
Zuo Jt
 ## ## 在横坐标数据非时间类型时,能否设置为非连续型呢?? ## ```` ```` ```` scale: [{ dataKey: 'type', // 横坐标时间类型: time:连续型;timeCat:非连续型 type: 'timeCat' }, { dataKey: 'count', formatter: (text) => { if (text % 1 !==...
自己写的几个爬虫程序集合 [nodejs-spider](https://github.com/Zuojiangtao/nodejs-spider)。欢迎大家点赞收藏!
vercel部署教程: https://eibot3u32o.feishu.cn/docx/L46Pdp3fjouPUvxaNzPckKctno3 通过教程部署好后,领导不满意。他想要私有化部署,经过摸索成功实现,记录下过程。 > 我暂时使用supabase云服务,后续把supabase部署到本地再出一份文档。
### Describe the Bug when I deploy my project in vercel, it throw an error: "Error: ENOENT: no such file or directory, mkdir './node_modules/.cache/imageOptimizer'". And my configuration: ``` ViteImageOptimizer({ cache:...
// vue.config.js ``` chainWebpack: config => { const svgRule = config.module.rule('svg') svgRule.uses.clear() svgRule .oneOf('inline') .resourceQuery(/inline/) .use('vue-svg-icon-loader') .loader('vue-svg-icon-loader') .end() .end() .oneOf('external') .use('file-loader') .loader('file-loader') .options({ name: 'assets/[name].[hash:8].[ext]', }) } ``` // pages...