The [prefix option](https://github.com/cloudflare/partykit/tree/main/packages/hono-party#usage) can be used to change the base `/parties` path ? I just changed it to "'/ws", but it doesn't work ``` app.use( '*', partyserverMiddleware({ options: { prefix: "/ws" // Handles /ws/* routes only }, onError: (error) => { console.error('Partyserver error:', error); throw new HTTPException(404, { message: 'No room found' }); }, }) ); ``` <img width="736" height="482" alt="Image" src="https://github.com/user-attachments/assets/e0df86ed-4892-4713-8665-c6eb3a641ef7" />