Zhu Liang

Results 44 comments of Zhu Liang

I can confirm that gitlab doesn't not have this issue. We are able to pull private dependencies using https and `CI_JOB_TOKEN` like this: ``` git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.xyz.net".insteadOf 'ssh://[email protected]' ```...

Hi. I just want to report that I had this performance issue for several weeks for my Electron + Vue.js project and it was driving me crazy. For some reason...

Here is one of the `cpuprofile`: ![Image](https://github.com/user-attachments/assets/67dd5bb0-14b8-4cc1-afa5-ebe3de239d2c) The function that is taking up a lot of time: ``` async function Gh(n){mc||await lx(U.serverPath); ```

On Next.js `14.2.18`, using the following config did not work: ```ts const nextConfig = { distDir: process.env.NODE_ENV === "development" ? ".next/dev" : ".next/build", } ``` Running `next build` would still...