Lefteris Pegiadis
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. 
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 ```