mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
add robots.txt
This commit is contained in:
parent
e85f98a532
commit
2dee5123a4
5 changed files with 11 additions and 4 deletions
2
TODO.md
2
TODO.md
|
|
@ -9,7 +9,7 @@
|
||||||
- [x] prettier and eslint
|
- [x] prettier and eslint
|
||||||
- [x] transition and loading times
|
- [x] transition and loading times
|
||||||
- [ ] pwa
|
- [ ] pwa
|
||||||
- [ ] seo, robots.txt
|
- [x] seo, robots.txt
|
||||||
- [x] update the README
|
- [x] update the README
|
||||||
- [ ] create image provider
|
- [ ] create image provider
|
||||||
- [x] fetch recipe per id
|
- [x] fetch recipe per id
|
||||||
|
|
|
||||||
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
|
@ -2,7 +2,13 @@
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
devtools: { enabled: true },
|
devtools: { enabled: true },
|
||||||
|
|
||||||
modules: ["@nuxt/eslint", "@nuxt/image", "nuxt-icon", "nuxt-delay-hydration"],
|
modules: [
|
||||||
|
"@nuxt/eslint",
|
||||||
|
"@nuxt/image",
|
||||||
|
"nuxt-icon",
|
||||||
|
"nuxt-delay-hydration",
|
||||||
|
"@nuxtjs/robots",
|
||||||
|
],
|
||||||
|
|
||||||
app: {
|
app: {
|
||||||
head: {
|
head: {
|
||||||
|
|
@ -19,6 +25,7 @@ export default defineNuxtConfig({
|
||||||
link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }],
|
link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }],
|
||||||
},
|
},
|
||||||
pageTransition: { name: "page", mode: "out-in" },
|
pageTransition: { name: "page", mode: "out-in" },
|
||||||
|
layoutTransition: { name: "slide", mode: "out-in" },
|
||||||
},
|
},
|
||||||
|
|
||||||
build: {
|
build: {
|
||||||
|
|
@ -53,3 +60,4 @@ export default defineNuxtConfig({
|
||||||
ssr: true,
|
ssr: true,
|
||||||
compatibilityDate: "2024-12-13",
|
compatibilityDate: "2024-12-13",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/eslint": "^0.3.10",
|
"@nuxt/eslint": "^0.3.10",
|
||||||
"@nuxt/image": "^1.6.0",
|
"@nuxt/image": "^1.6.0",
|
||||||
|
"@nuxtjs/robots": "5.0.1",
|
||||||
"@trpc/client": "^10.45.2",
|
"@trpc/client": "^10.45.2",
|
||||||
"@trpc/server": "^10.45.2",
|
"@trpc/server": "^10.45.2",
|
||||||
"nuxt": "^3.14.1592",
|
"nuxt": "^3.14.1592",
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
# https://www.robotstxt.org/robotstxt.html
|
|
||||||
User-agent: *
|
|
||||||
Loading…
Reference in a new issue