@@ -10,10 +10,10 @@ import { description, name, version } from './package.json'
1010// https://nuxt.com/docs/api/configuration/nuxt-config
1111export default defineNuxtConfig ( {
1212 devtools : { enabled : true } ,
13- modules : [ '@vueuse/nuxt' , '@unocss/nuxt' , '@nuxtjs/color-mode' , '@nuxt/eslint' , '@nuxthub/core' , '@nuxt/image' , 'reka-ui/nuxt' , 'nuxt-safe-runtime-config' ] ,
13+ modules : [ '@vueuse/nuxt' , '@unocss/nuxt' , '@nuxtjs/color-mode' , '@nuxt/eslint' , '@nuxthub/core' , '@nuxt/image' , '@nuxt/fonts' , ' reka-ui/nuxt', 'nuxt-safe-runtime-config' ] ,
1414
1515 hub : {
16- database : true ,
16+ db : 'sqlite' ,
1717 blob : true ,
1818 cache : true ,
1919 } ,
@@ -137,6 +137,12 @@ export default defineNuxtConfig({
137137 colorMode : {
138138 classSuffix : '' ,
139139 } ,
140+ fonts : {
141+ families : [
142+ { name : 'Mulish' , weights : [ 400 , 600 , 700 ] } ,
143+ { name : 'Fira Code' , weights : [ 400 ] } ,
144+ ] ,
145+ } ,
140146
141147 nitro : {
142148 preset : 'cloudflare_module' ,
@@ -145,8 +151,8 @@ export default defineNuxtConfig({
145151 tasks : true ,
146152 } ,
147153 scheduledTasks : {
148- // Hourly sync: fetch missing epochs and update validator snapshots
149- '0 * * * *' : [ 'sync:epochs' , 'sync:snapshot' ] ,
154+ // 12-hour sync: fetch missing epochs and update validator snapshots
155+ '0 */12 * * *' : [ 'sync:epochs' , 'sync:snapshot' ] ,
150156 } ,
151157 openAPI : {
152158 meta : { title : name , description, version } ,
0 commit comments