Add `/recipe/new` path with form to add new recipe Mostly designed but not fully: steps and ingredients are inputtable with final styling but it cannot be submitted yet, and other crucial components like description, rating, etc are not yet implemented. Many design changes too cos i couldnt help myself More additions will certainly be required but this PR is huge so I will split it out into more Reviewed-on: #11 Co-authored-by: june <self@breadone.net> Co-committed-by: june <self@breadone.net>
17 lines
415 B
JSON
17 lines
415 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["src/components/*.astro"],
|
|
"@/layouts/*": ["src/layouts/*.astro"],
|
|
"@/script/*": ["src/script/*"],
|
|
"@/utils": ["src/utils/index.ts"],
|
|
"@/data/*": ["src/data/*"],
|
|
"@/site-config": ["src/site.config.ts"]
|
|
}
|
|
}
|
|
}
|