kuubson

Results 4 comments of kuubson

yeah the `prisma` must be also installed, especially when using `pnpm` (ensure that the versions are the same)

for `vite` + `pnpm` the following config works fine: ```js // vite.config.ts export default defineConfig(({ mode }) => ({ resolve: { alias: { '.prisma/client/index-browser': `@prisma/client/index-browser` } }, })) ``` >...

> **Note** Sorry for my last assumption, I was wrong. After serving the built `index.html` file with `express`, I encountered several errors due to the lack of access to enums...

I'm bringing here simplified version because these from the top may confuse somebody at first (like it did to me) ``` // create one channel PushNotification.createChannel({ channelId: 'messages', channelName: 'messages'...