mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
Make baseUrl dynamic and tweak invalid input style's contrast
This commit is contained in:
parent
7262bba4e0
commit
2d70a3817d
4 changed files with 14 additions and 3 deletions
|
|
@ -1,4 +1,5 @@
|
|||
PORT=8000
|
||||
BASE_URL="http://localhost:8000"
|
||||
|
||||
POSTGRESQL_HOST="localhost"
|
||||
POSTGRESQL_USER="postgres"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
"fresh",
|
||||
"recommended"
|
||||
],
|
||||
"exclude": ["no-explicit-any", "no-empty-interface", "ban-types"]
|
||||
"exclude": ["no-explicit-any", "no-empty-interface", "ban-types", "no-window"]
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
|
|
|
|||
12
lib/utils.ts
12
lib/utils.ts
|
|
@ -1,6 +1,16 @@
|
|||
import { Contact, ContactAddress, ContactField } from './types.ts';
|
||||
|
||||
export const baseUrl = 'https://app.bewcloud.com';
|
||||
let BASE_URL = typeof window !== 'undefined' && window.location
|
||||
? `${window.location.protocol}//${window.location.host}`
|
||||
: '';
|
||||
|
||||
if (typeof Deno !== 'undefined') {
|
||||
await import('std/dotenv/load.ts');
|
||||
|
||||
BASE_URL = Deno.env.get('BASE_URL') || '';
|
||||
}
|
||||
|
||||
export const baseUrl = BASE_URL || 'http://localhost:8000';
|
||||
export const defaultTitle = 'bewCloud is a modern and simpler alternative to Nextcloud and ownCloud';
|
||||
export const defaultDescription = `Have your calendar, contacts, tasks, and files under your own control.`;
|
||||
export const helpEmail = 'help@bewcloud.com';
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ form {
|
|||
}
|
||||
|
||||
.input-field:required:invalid:not(:placeholder-shown) {
|
||||
@apply bg-red-100 !important;
|
||||
@apply bg-red-400 !important;
|
||||
}
|
||||
|
||||
.notification-error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue