@vercel/build-utils 8.4.4 → 8.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/types.d.ts
CHANGED
@@ -361,6 +361,11 @@ export type RemotePattern = {
|
|
361
361
|
* Double `**` matches any number of path segments.
|
362
362
|
*/
|
363
363
|
pathname?: string;
|
364
|
+
/**
|
365
|
+
* Can be literal query string such as `?v=1` or
|
366
|
+
* empty string meaning no query string.
|
367
|
+
*/
|
368
|
+
search?: string;
|
364
369
|
};
|
365
370
|
export interface Images {
|
366
371
|
domains: string[];
|