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-04-12 16:44:40 +02:00
|
|
|
shortName: 'Boilerplate',
|
|
|
|
longName: 'Next.Js Boilerplate',
|
|
|
|
description:
|
|
|
|
'The latest Next.js boilerplate starter code/time saver with Typescript / SCSS. Including linters such as: Prettier, Eslint and Stylelint.',
|
2022-03-24 01:43:44 +01:00
|
|
|
url: 'Unknown project url',
|
2022-05-16 14:33:56 +02:00
|
|
|
defaultLocale: 'en',
|
2022-04-12 16:58:36 +02:00
|
|
|
color: '#775aaa',
|
2022-03-24 14:46:54 +01:00
|
|
|
icons: {
|
2022-04-12 16:58:36 +02:00
|
|
|
image: '/images/Logo.png',
|
2022-03-24 14:46:54 +01:00
|
|
|
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
|
|
|
}
|