Skip to content

Commit

Permalink
Populate nuxt.config.ts (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: Nitrrine <[email protected]>
  • Loading branch information
Nitrrine and Nitrrine authored Jul 4, 2024
1 parent faa8c7c commit dd2b27d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {
head: {
title: "Not Essential",
titleTemplate: "%s | Not Essential",
meta: [
{
name: "description",
content:
"There are better ways to play Minecraft. Don't be forced to use Essential.",
},
{ name: "theme-color", content: "#0056ea" },
],
link: [
{ rel: "shortcut icon", href: "favicon.ico", type: "image/x-icon" },
],
},
},
modules: ["@nuxtjs/tailwindcss", "nuxt-lucide-icons"],
})
2 changes: 1 addition & 1 deletion pages/alternatives.vue
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ import ProjectParagraph from "../components/projectParagraph.vue"
import ProjectTitleBar from "../components/projectTitleBar.vue"
useSeoMeta({
title: "Alternatives | Not Essential",
title: "Alternatives",
description: "Essential has many issues. This page provides alternatives.",
ogImage: "/img/icon512.png",
})
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import ProjectTitleBar from "../components/projectTitleBar.vue"
import BigButton from "../components/bigButton.vue"
useSeoMeta({
title: "Home | Not Essential",
title: "Home",
description:
"Essential has many issues. This website tells why, and provides alternatives.",
ogImage: "/img/icon512.png",
Expand Down

0 comments on commit dd2b27d

Please sign in to comment.