File tree Expand file tree Collapse file tree 3 files changed +11
-66
lines changed Expand file tree Collapse file tree 3 files changed +11
-66
lines changed Original file line number Diff line number Diff line change @@ -93,5 +93,15 @@ export default defineNuxtConfig({
9393 } ,
9494 ] ,
9595 } ,
96+
97+ // Credits
98+ credits : {
99+ creator : {
100+ name : 'Nuxtify' ,
101+ domain : 'nuxtify.dev' ,
102+ } ,
103+ prependText : 'Made with love by' ,
104+ appendText : ' Ship weirdly fast.' ,
105+ } ,
96106 } ,
97107} )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import type { ModuleOptions } from '../../types/module'
2- import { useAppConfig , useHead } from '#imports'
2+ import { useAppConfig } from '#imports'
33
44export const useNuxtifyConfig = ( ) : ModuleOptions => useAppConfig ( ) . nuxtify
5-
6- export const useNuxtifySiteTitle = ( {
7- separator = '|' ,
8- siteName = '' ,
9- } : { separator ?: string , siteName ?: string } = { } ) => {
10- // App state
11- const nuxtifyConfig = useNuxtifyConfig ( )
12-
13- useHead ( {
14- titleTemplate : ( titleChunk ) => {
15- return titleChunk ? `${ titleChunk } %separator %siteName` : '%siteName'
16- } ,
17- templateParams : {
18- siteName : siteName || nuxtifyConfig . brand ?. name ,
19- separator,
20- } ,
21- } )
22- }
You can’t perform that action at this time.
0 commit comments