mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2026-03-01 12:44:23 +00:00
* rename test:lint:eslint to lint and update eslint-config-it4c package * simplify config and make it ts * jest update & ts * suppress server logging output in tests * remove test node_env as it is default for jest * use eslint-config-it4c * packages = module * fix tailwind as ts * eslitn autofix * more fixes * tsconfig & some eslint rules * fixes * more fixes * more exceptions * do not allow warnings * fix config * ignore vuepress generated configs * ts include fix
21 lines
644 B
TypeScript
21 lines
644 B
TypeScript
import type { HeadConfig } from 'vuepress'
|
|
|
|
export default {
|
|
title: 'IT4C',
|
|
description:
|
|
'IT4C.dev stellt das IT Team for Change, seine angewandte Philosophie und Projekte vor.',
|
|
head: [
|
|
[
|
|
'meta',
|
|
{
|
|
name: 'viewport',
|
|
content:
|
|
'width=device-width,initial-scale=1,viewport-fit=cover,user-scalable=no,shrink-to-fit=no',
|
|
},
|
|
],
|
|
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
|
|
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' }],
|
|
['meta', { name: 'format-detection', content: 'telephone=no' }],
|
|
] as HeadConfig[],
|
|
}
|