2022-03-24 14:46:54 +01:00
|
|
|
import { PCDefaultValues } from 'types/projectConfig'
|
2022-03-24 01:43:44 +01:00
|
|
|
|
2022-03-24 14:46:54 +01:00
|
|
|
export const projectConfig: PCDefaultValues = {
|
2022-03-24 01:43:44 +01:00
|
|
|
shortName: 'Unknown project name',
|
|
|
|
longName: 'Unknown project name',
|
|
|
|
description: 'Unknown project description',
|
|
|
|
url: 'Unknown project url',
|
2022-03-24 14:46:54 +01:00
|
|
|
color: '#FF0000',
|
|
|
|
icons: {
|
|
|
|
image: '/images/Logo.png',
|
|
|
|
default: '/icons/favicons/favicon.ico',
|
|
|
|
apple: '/icons/favicons/apple-touch-icon.png',
|
|
|
|
'16_16': '/icons/favicons/favicon-16x16.png',
|
|
|
|
'32_32': '/icons/favicons/favicon-32x32.png'
|
|
|
|
}
|
2022-03-24 01:43:44 +01:00
|
|
|
}
|