AliuQ
AliuQ
same issue, slowly too in synology container
Thanks for the reply.
@AmIBeingObtuse Thanks your reply, can u try to add the belows `compose.yaml` to check the `uptime-kuma data` stored position? ```yaml version: "3.8" services: uptime-kuma: image: louislam/uptime-kuma:1 container_name: uptime-kuma volumes: -...
I have a another question, if I used absolute path on `dockge volumes` ```yaml volumes: - "/var/run/docker.sock:/var/run/docker.sock" - "C:/Yourpath/Data:/app/data" - "C:/Yourpath/Stacks:/opt/stacks" environment: - `"DOCKGE_STACKS_DIR=/opt/stacks"` ``` Need I use absolute path...
> 总觉得实现怪怪得呢 它的意思是为内部的 `packages\schema\schema.json` 扩展类型,但是好像除了 PageMetaDatum,其余的都不是动态的?还有个问题,我不知道怎么打印 volar 执行的日志,应该从哪里能看到日志呀? ```ts import { PageMetaDatum as SPageMetaDatum } from '@uni-helper/vite-plugin-uni-pages'; export interface UniPagesRouteMeta { PageMetaDatum: Partial & { /** 自定义属性 */ customAttribute?: string...
> > 1. 对于 lang="yaml",不知道为啥也能给出提示? > > 意思是不修改 yamlLs 那个文件也行? 对的,我按快捷提示,也能出来
不理解,也不是执行顺序问题。 我为 H5 添加了自定义属性,但是并不会生效,是因为它们不会被 volar 使用吗?
感觉不太好,这样在 `packages\playground\pages.config.ts` 中的 pages 不会有提示
@KeJunMao 换成了只修改 `PageMetaDatum`,方便的时候瞅瞅看
@KeJunMao 相同的 `PageMetaDatum`, volar 报了个类型重复的错误 `typescript Type "PageMetaDatum" has multiple definitions` ```ts import { PageMetaDatum as IPageMetaDatum } from '@uni-helper/vite-plugin-uni-pages'; interface PageMeta { /** 自定义属性 */ customAttribute?: string } //...