We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08220c2 commit 772b8cdCopy full SHA for 772b8cd
nuxt.config.ts
@@ -29,7 +29,17 @@ export default defineNuxtConfig({
29
// ⭐ ADD THIS - Critical for GitHub Pages subdirectory
30
app: {
31
baseURL: '/cs-documentation/', // Must match your repo name
32
- buildAssetsDir: 'assets', // Avoid Jekyll conflicts
+ buildAssetsDir: 'assets',
33
+ // Add this to configure favicon
34
+ head: {
35
+ link: [
36
+ {
37
+ rel: 'icon',
38
+ type: 'image/x-icon',
39
+ href: '/favicon_nfdi4chem.ico' // Nuxt will auto-prefix with baseURL
40
+ }
41
+ ]
42
+ }// Avoid Jekyll conflicts
43
},
44
45
nitro: {
0 commit comments