Lefteris Pegiadis

Results 10 comments of Lefteris Pegiadis

IMHO that conditional needs to change. Since webpack 5, everything related to the NodeJS API (like `process`), has been stripped out of browser and is not injected automatically (it's also...

Is it actually some Node 16 breaking change that needs to be obliged?

> @pegiadise I don’t think it’s the reason. > > This worked for me: > > ``` > - name: πŸš€ Release > uses: cycjimmy/semantic-release-action@v2 > id: semantic > with:...

Would be nice to be able to define only excludes. Right now even if my inputs are only negative globs, it never misses the cache even if `src/**` changes and...

I think it would be awesome to allow model selection for own key :pray:...

It's present on linux AppImage for 0.15.1. ![image](https://github.com/getcursor/cursor/assets/11925511/7da471b8-6475-4b12-8609-b30c3e519a78)

You can already add it manually and use it

Same issue. Can work around it via if you import the browser version directly. Hope it saves some time to someone. ```ts // nuxt.config.ts app: { head: { // make...

Some kind of library you use is doing browser detection on the server. Worked around it with: ```ts // nuxt.config.ts export default defineNuxtConfig({ nitro: { replace: { // replace the...

Workaround so far: ```vue import { useSlots } from 'vue' const slots = useSlots() as any ```