add valid domain for cookie

This commit is contained in:
Rajat Soni
2019-09-09 23:02:21 +05:30
parent 71cfbea22d
commit 736de927e7
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ if (!isServer) {
} else if (env('BACKEND_HOST')) {
apiUrl = env('BACKEND_HOST');
dashboardUrl = env('DASHBOARD_HOST');
domain = 'host';
domain = '.fyipe.com';
}
}

View File

@@ -45,7 +45,7 @@ if (!isServer) {
apiUrl = env('BACKEND_HOST');
dashboardUrl = env('HOST');
accountsUrl = env('ACCOUNTS_HOST');
domain = 'host';
domain = '.fyipe.com';
}
}