You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
export const config = {
|
|
env: {
|
|
STRAPI_URL_API: process.env.NX_STRAPI_URL_API,
|
|
STRAPI_URL: process.env.NX_STRAPI_URL,
|
|
NEXTAUTH_SECRET: process.env.NX_NEXTAUTH_SECRET,
|
|
NEXTAUTH_URL: process.env.NX_NEXTAUTH_URL,
|
|
},
|
|
mainApiEndpoint: 'https://conduit.productionready.io/api'
|
|
}
|
|
|
|
export const theme = {
|
|
colors: {
|
|
primary: '#3b5998',
|
|
secondary: '#8b9dc3',
|
|
gray: '#f7f7f7'
|
|
},
|
|
width: {
|
|
xl: 1200,
|
|
l: 900,
|
|
m: 750,
|
|
s: 400
|
|
}
|
|
}
|
|
|
|
export const siteConfig = {
|
|
siteTitle: 'Conduit', // Navigation and Site Title
|
|
siteUrl: process.env.ROOT_URL || 'https://next.org', // Domain of your site. No trailing slash!
|
|
siteLanguage: 'fr', // Language Tag on <html> element
|
|
siteLogo: '/logo.png', // Used for SEO and manifest, path to your image you placed in the 'static' folder
|
|
siteDescription: 'Real world example of nextjs SSR',
|
|
author: 'arrlancore', // Author for schemaORGJSONLD
|
|
organization: 'Open Source Organization',
|
|
|
|
userTwitter: '@arrlancore', // Twitter Username
|
|
ogSiteName: 'Dwiki Arlan', // Facebook Site Name
|
|
ogLanguage: 'en_US',
|
|
googleAnalyticsID: process.env.GOOGLE_ANALYTIC_ID || 'UA-XXX123-1',
|
|
|
|
// Manifest and Progress color
|
|
themeColor: '#4147DC',
|
|
backgroundColor: '#231C42',
|
|
defaultUserAvatar: '',
|
|
|
|
// Social component
|
|
twitter: 'https://twitter.com/arrlancore/',
|
|
twitterHandle: '@arrlancore',
|
|
github: 'https://github.com/arrlancore/',
|
|
youtube: 'https://www.youtube.com/',
|
|
rss: 'https://next.org/blog/rss.xml'
|
|
}
|