Implemented server routes

This commit is contained in:
Sebastian Seedorf
2022-08-17 23:27:19 +02:00
parent 9660f0cf34
commit 92b762bbd2
27 changed files with 2754 additions and 1692 deletions

18
.prettierrc.json Normal file
View File

@@ -0,0 +1,18 @@
{
"printWidth": 100,
"tabWidth": 2,
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.css",
"options": {
"singleQuote": false,
"tabWidth": 4
}
}
]
}