Alexander Savelyev
Alexander Savelyev
I see a test for remotePatterns - `test\integration\image-optimizer\test\index.test.ts`, but it only checks for schema validation errors, not patterns. In this case, should tests for patterns be added and should they...
Maybe remove micromatch and write custom regexp? Something like: for pathnames: ```js new RegExp(`^${pathnameRule.replace(/([\[\]\\^$.|?+()])/g, '\\$1').replace(/\*\*/g, '.+').replace(/\*/g, '[^\\]+')}$`) ``` for domains: ```js new RegExp(`^${domainRule.replace(/([\[\]\\^$.|?+()])/g, '\\$1').replace(/\*\*/g, '.+').replace(/\*/g, '[^.]+')}$`) ``` For domains with...
@styfle unfortunately, the bug is still there. However, now I understand that the solution above will only solve a specific bug of the tasks above, but there will still be...
@styfle I checked where else there might be issues (_seems to be working in other places_) and saw comments on micromatch (_which is no longer used_). I think it's worth...
As a result, I only enabled this option for paths. I added tests for segments starting with a dot and also saw an unclosed case, when under `/*/` there may...
LOL, I felt it!!! `avatars.*.example.com` 
https://www.npmjs.com/package/picomatch#basic-globbing > Matches any character zero or more times, including path separators. Note that `**` will only match path separators (/, and \\ with the windows option) when they are...
_Turned off this test and left the todos associated with picomatch_
Hello. I recently used next-intl in a job project and now I've rolled it back. _As I've worked on such a thing I know the importance of feedback)_ _A bit...
The parameters have been added everywhere. I will try to create an repro, but basically, it looks like this: ```ts const Page: React.FC = async ({ params }) => {...