mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
32 lines
642 B
JavaScript
Executable File
32 lines
642 B
JavaScript
Executable File
module.exports = {
|
|
server_endpoint: 'https://comty.julioworld.club',
|
|
siteName: 'Comty',
|
|
copyright: 'RageStudio©',
|
|
|
|
LogoPath: '/logo.svg',
|
|
FullLogoPath: '/full_logo.svg',
|
|
DarkFullLogoPath: '/dark_full_logo.svg',
|
|
DarkLogoPath: '/dark_logo.svg',
|
|
|
|
resource_bundle: 'light_ng',
|
|
|
|
/* Layout configuration, specify which layout to use for route. */
|
|
layouts: [
|
|
{
|
|
name: 'primary',
|
|
include: [/.*/],
|
|
exclude: [/\/login/, /\/socket\/(.*)/, /\/publics/, /\/authorize/],
|
|
},
|
|
],
|
|
|
|
i18n: {
|
|
languages: [
|
|
{
|
|
key: 'en',
|
|
title: 'English',
|
|
},
|
|
],
|
|
defaultLanguage: 'en',
|
|
},
|
|
}
|