BingZi

Results 35 comments of BingZi

也许可以在新增订阅的时候添加一个选项 决定是否需要 遵循远程配置文件的 profile.store-selected 属性

> If you are running it on Linux `export LIBGL_ALWAYS_SOFTWARE=1` may work. _Originally posted by @sekwah41 in https://github.com/tauri-apps/tauri/issues/4438#issuecomment-1225968600_

tauri https://github.com/tauri-apps/tauri/issues/8326#issue-2022070225 mihomo https://github.com/MetaCubeX/mihomo/issues/870#issue-2026083170

> > tauri [tauri-apps/tauri#8326 (comment)](https://github.com/tauri-apps/tauri/issues/8326#issue-2022070225) mihomo [MetaCubeX/mihomo#870 (comment)](https://github.com/MetaCubeX/mihomo/issues/870#issue-2026083170) > > @Cyenoch 大佬,我自己尝试编译了一下,提示Unsupported architecture on Linux: loong64,但我看您发的那个第一个issues里有人说好像需要把"loongarch64-unknown-linux-gnu"加入到 Cargo.toml's target就好了,然后第二个issues里有人回复修改component/ebpf/byteorder/byteorder_littleendian.go,component/ebpf/redir/bpf_bpfel.go,component/ebpf/tc/bpf_bpfel.go这几个文件,加入loong64即可编译成功,但我编译可能还不太熟悉,没尝试成功,这个后续你们还会支持loongarch64吗? 需要tauri支持才可以,你可能需要自己fork一份 tauri添加loongarch clash meta也需要你fork一份,添加对loongarch

> tauri和clash meta已支持,目前的问题是当前版本依赖vite 5.0.11所依赖的rollup尚不支持loongarch,采用较低版本的vite4.5.0是可以编译通过的,但我运行时遇到了webkit错误,尚未解决 我看tauri的target里是没有loongarch的 clash meta确实有loong64了 不过我不是很了解rollup为什么不支持loongarch,能否给指个路我瞅瞅

> tauri这个[PR](https://github.com/tauri-apps/tauri/pull/8623)被拒绝了,经实验简单添加loongarch的target就能编译,rollup需要rollup.linux-loongarch-gnu.node,这个文件是在x86下交叉编译的,目前还存在问题,可以参考添加ppc64le支持这个[PR](https://github.com/rollup/rollup/pull/5350) ok

`vite.config.ts` 中追加: ```javascript export default defineConfig({ ssr: { // 原有配置上追加这三个 noExternal: ['naive-ui', 'date-fns', 'vueuc'], } }) ``` Append configuration items in the configuration file `vite.config.ts` : ```javascript export default defineConfig({...

> `vite.config.ts` 中追加: > > ```js > export default defineConfig({ > ssr: { > // 原有配置上追加这三个 > noExternal: ['naive-ui', 'date-fns', 'vueuc'], > } > }) > ``` > > Append...

I think it would be better if ensure that all tsr-once is before the entry script

> how can I reproduce the issue locally? For example: ```bash cd example/react/start-material-ui ``` Update `app.config.ts` set server.preset = 'bun' ```bash pnpm build bun run .output/server/index.mjs ``` Open "localhost:3000" and...