@xrengine/server-core
Version:
Shared components for XREngine server
39 lines (37 loc) • 1.52 kB
text/typescript
import { defaultThemeModes, defaultThemeSettings } from '@xrengine/common/src/constants/DefaultThemeSettings'
export const clientSeed = {
path: 'client-setting',
templates: [
{
logo: process.env.APP_LOGO,
title: process.env.APP_TITLE,
shortTitle: process.env.APP_TITLE,
startPath: '/',
releaseName: process.env.RELEASE_NAME || 'local',
siteDescription: process.env.SITE_DESC,
url:
process.env.APP_URL ||
(process.env.VITE_LOCAL_BUILD
? 'http://' + process.env.APP_HOST + ':' + process.env.APP_PORT
: 'https://' + process.env.APP_HOST + ':' + process.env.APP_PORT),
favicon32px: '/favicon-32x32.png',
favicon16px: '/favicon-16x16.png',
icon192px: '/android-chrome-192x192.png',
icon512px: '/android-chrome-512x512.png',
appBackground: 'static/main-background.png',
appTitle: 'static/ethereal_mark.png',
appSubtitle: 'EtherealEngine.org',
appDescription: 'FREE, OPEN, & INTEROPERABLE IMMERSIVE WEB TECHNOLOGY',
appSocialLinks: JSON.stringify([
{ icon: 'static/discord.svg', link: 'https://discord.gg/xrf' },
{ icon: 'static/github.svg', link: 'https://github.com/XRFoundation' }
]),
themeSettings: JSON.stringify(defaultThemeSettings),
themeModes: JSON.stringify(defaultThemeModes),
key8thWall: process.env.VITE_8TH_WALL,
homepageLinkButtonEnabled: false,
homepageLinkButtonRedirect: '',
homepageLinkButtonText: ''
}
]
}