Садыков Айрат
Садыков Айрат
Yes, on mobile you can't slide images right now. I checked on Android.
My device: Android 12 Chrome 107
The problem is reproduced when using pnpm workspace + astro + kobalte. [repo reproduce](https://github.com/SinnerAir/astro-kobalte-pnpm.git) pnpm version 9.6.0 astro 4.13.0 kobalte: 0.13.4 Command start `pnpm -F astro start` 
Solved the problem by specifying the export in the package.json, which simply re-exports kobalte ` "exports": { ".": { "solid": "./node_modules/@kobalte/core/dist/index.jsx" } }`
pnpm: 9.9.0 @hey-api/client-fetch: 0.2.4 @hey-api/openapi-ts: 0.53.0 Configuration in file openapi-ts.config.ts ```ts import { createClient } from '@hey-api/openapi-ts'; export default createClient({ input: 'http://localhost:8080/api/swagger/v2/swagger.json', output: './generated/v2/', exportCore: false, services: false, schemas: false,...
Sorry. False alarm. I updated the pnpm and packages version and everything worked.
I fixed it by simply converting the html file from UTF-8 BOM to UTF-8 (without BOM)
I have the same problem (pnpm 9.15.1 with workspaces, vite 6.0.5) ``` > storybook dev -p 6006 @storybook/core v8.4.7 info => Starting manager.. info => Starting preview.. => Failed to...
I want to share a temporary solution. I visited the site [https://new-storybook.netlify.app/](https://new-storybook.netlify.app/), where I followed the link to the demo version for SolidJS. I updated the package.json ``` "@storybook/addon-essentials": "^8.5.0-beta.5",...