File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ export default defineNuxtConfig({
1111 pathPrefix : false ,
1212 } ,
1313 ] ,
14+ // Routes
15+ routeRules : { } ,
1416 // Runtime
1517 runtimeConfig : {
1618 public : {
@@ -27,9 +29,6 @@ export default defineNuxtConfig({
2729 prerender : {
2830 autoSubfolderIndex : false ,
2931 } ,
30- experimental : {
31- wasm : true ,
32- } ,
3332 preset : "cloudflare-module" ,
3433 cloudflare : {
3534 nodeCompat : true ,
@@ -40,6 +39,9 @@ export default defineNuxtConfig({
4039 blockAiBots : true ,
4140 blockNonSeoBots : true ,
4241 } ,
42+ ogImage : {
43+ enabled : false ,
44+ } ,
4345 // Development
4446 compatibilityDate : "2025-07-15" ,
4547 devtools : { enabled : true } ,
Original file line number Diff line number Diff line change 11<script setup lang="ts">
22import type { ToasterProps } from " @nuxt/ui" ;
33
4- defineOgImageComponent (" BasicOG" );
5-
64const toaster: ToasterProps = { position: " top-right" };
75
86const siteConfig = useSiteConfig ();
7+
8+ useSeoMeta ({
9+ title: " Solitar" ,
10+ description: " The only URL toolbox that you need" ,
11+ ogTitle: " Solitar" ,
12+ ogDescription: " The only URL toolbox that you need" ,
13+ ogImage: " /og.png" ,
14+ twitterCard: " summary_large_image" ,
15+ });
916 </script >
1017
1118<template >
Load Diff This file was deleted.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments