@v4fire/client
Version:
V4Fire client core library
19 lines (17 loc) • 431 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
/**
* A list of URL patterns that will not be intercepted by the router upon clicking.
* For instance, navigating to an external resource or using anchor-based navigation within a page.
*/
export const urlsToIgnore = [
/^#/,
/^javascript:/,
/^mailto:/,
/^tel:/
];