Updated domain regex.

This commit is contained in:
Mike Cao 2020-08-28 22:25:41 -07:00
parent 5a4cde854a
commit e7d3a952a6

View File

@ -1,6 +1,6 @@
export const AUTH_COOKIE_NAME = 'umami.auth';
export const DOMAIN_REGEX = /(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9][a-z0-9-]{0,61}[a-z0-9]/;
export const DOMAIN_REGEX = /((?=[a-z0-9-]{1,63}\.)(xn--)?[a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,63}/;
export const DESKTOP_SCREEN_WIDTH = 1920;
export const LAPTOP_SCREEN_WIDTH = 1024;