1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

changed presets

This commit is contained in:
Fedor Katurov 2019-11-14 17:57:16 +07:00
parent a0c93c480f
commit 77979bd7e9
3 changed files with 107 additions and 70 deletions

View file

@ -1,29 +1,29 @@
export const URLS = {
BASE: '/',
BORIS: '/boris',
BASE: "/",
BORIS: "/boris",
AUTH: {
LOGIN: '/auth/login',
LOGIN: "/auth/login"
},
EXAMPLES: {
EDITOR: '/examples/edit',
IMAGE: '/examples/image',
EDITOR: "/examples/edit",
IMAGE: "/examples/image"
},
ERRORS: {
NOT_FOUND: '/lost',
BACKEND_DOWN: '/oopsie',
NOT_FOUND: "/lost",
BACKEND_DOWN: "/oopsie"
},
NODE_URL: (id: number | string) => `/post${id}`,
PROFILE: (username: string) => `/~${username}`,
PROFILE: (username: string) => `/~${username}`
};
export const PRESETS = {
'1400': '1400',
'900': '900',
'600': '600',
'300': '300',
'100': '100',
placeholder: 'placeholder',
cover: 'cover',
hero: 'hero',
avatar: 'avatar',
"1600": "1600",
"900": "900",
"600": "600",
"300": "300",
"100": "100",
placeholder: "placeholder",
cover: "cover",
hero: "hero",
avatar: "avatar"
};