File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1
- <script setup>
2
- import { useSiteConfig } from ' #imports'
3
-
4
- const siteConfig = useSiteConfig ()
5
- </script >
6
-
7
1
<template >
8
2
<div class =" flex flex-col min-h-screen" >
9
3
<header class =" sticky top-0 z-50 w-full backdrop-blur flex-none border-b border-gray-900/10 dark:border-gray-50/[0.06] bg-white/75 dark:bg-gray-900/75" >
@@ -12,7 +6,7 @@ const siteConfig = useSiteConfig()
12
6
<Icon name =" logos:nuxt-icon" class =" w-8 h-8" />
13
7
Nuxt
14
8
<div class =" text-primary-500 dark:text-primary-400" >
15
- {{ siteConfig.name }}
9
+ OG Image
16
10
</div >
17
11
</NuxtLink >
18
12
</UContainer >
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ export default defineNuxtConfig({
34
34
)
35
35
subprocess . getProcess ( ) . stdout ?. on ( 'data' , ( data ) => {
36
36
// eslint-disable-next-line no-console
37
- console . log ( ` sub : ${ data . toString ( ) } ` )
37
+ console . log ( ` - devtools : ${ data . toString ( ) } ` )
38
38
} )
39
39
subprocess . getProcess ( ) . stderr ?. on ( 'data' , ( data ) => {
40
- console . error ( ` sub : ${ data . toString ( ) } ` )
40
+ console . error ( ` - devtools : ${ data . toString ( ) } ` )
41
41
} )
42
42
43
43
process . on ( 'exit' , ( ) => {
You can’t perform that action at this time.
0 commit comments