mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* Make login, registration, password-reset layout brandable - Rename some variables related to this * Remove experimental code * add lodash types * fix build fix type --------- Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
import { merge } from 'lodash'
|
|
import login from '~/constants/login.js'
|
|
|
|
const defaultLogin = {
|
|
LAYOUT: 'no-header',
|
|
}
|
|
|
|
export default merge(defaultLogin, login)
|