Open custardcream98 opened 1 month ago
Despite the limitations mentioned above, the developed WebSocket server itself seems useful, so I plan to separate it and release it first. With this, users will have more flexibility in handling locally stored handlers according to their preferences.
Update:
I'm building a WebSocket server for msw-devtools that runs concurrently with the
next dev
command.Here's the approach I have in mind:
concurrently
to start the WebSocket server. (concurrently "msw-devtools-server" "next dev"
)I have developed this approach to some extent, but since applying MSW to Next.js is quite challenging, it is difficult to make it work seamlessly.
The two bugs I'm currently trying to solve are:
The branch I am working on is
feat/support-next-js