1aerostorm
1aerostorm
@hoangvvo nope. Next-connect is a router. Routers are usually used with routes: ```js const handler = nc() .get('/api/test/foo', (req, res) => { res.end('foo!') }) .post('/api/test/bar', (req, res) => { res.end('bar!')...
@hoangvvo some route handlers are very short and simply, so we shouldn't split them into few files (Next.js API Routes). > I don't think that there is anyway to determine...
Currently solved it with: ```js let handler; const onNoMatch = makeNoMatch(() => handler); handler = nc({ onError, onNoMatch, ..., }) .use(...) .get('/api/hello/route1', ...) .post('/api/hello/route2', ...); ``` Where makeNoMatch is util...
I'm also faced this issue. And it is a bug, because partial match can be performed with RegExp, so case with string should check exact match.
Faced this issue on Windows when using device, but it is disconnected, so cordova-android tried to running emulator. It uses emulator and run that command when `adb devices` returns empty...
Not yet implemented? **NEEDED!** May be I can help.
Solution with MIME-type: 1. Install `file-saver` package into your dependencies (since we cannot use FileSaver from jspdf; also, it will be better to have possibility of update `file-saver` without forking...
Тоже столкнулся. Да и не только в select. Такая же проблема и в insert. Да, жесткий баг. К примеру, хранить timestamp в миллисекундах не получится из-за него. Work-around: завернуть в...
Looks like https://github.com/jaredpalmer/formik/issues/2457 And our solution: https://github.com/jaredpalmer/formik/issues/2457#issuecomment-2165499156