Skip to content

Commit

Permalink
chore: update theme
Browse files Browse the repository at this point in the history
  • Loading branch information
itsacoyote committed May 15, 2024
1 parent f709949 commit be1626b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
workflow_dispatch:

env:
NUXT_SITE_ENV: staging # used for NuxtSEO to disable things like indexing on staging

jobs:
build_and_preview:
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
push:
branches: [staging]

env:
NUXT_SITE_ENV: staging # used for NuxtSEO to disable things like indexing on staging

jobs:
build_and_deploy:
env:
Expand Down
1 change: 0 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ useHead({
},
{ name: 'author', content: 'https://matter-labs.io' },
],
link: [{ rel: 'icon', href: '/favicon.ico' }],
htmlAttrs: {
lang: 'en',
},
Expand Down
5 changes: 5 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import type { NuxtConfig } from 'nuxt/schema';
const defaultConfig: NuxtConfig = {
extends: [['github:matter-labs/docs-nuxt-template', { install: true }]],
modules: ['@nuxt/content', '@nuxt/ui', '@nuxt/eslint'],
runtimeConfig: {
public: {
app: 'sdk',
},
},
};

// https://nuxt.com/docs/api/configuration/nuxt-config
Expand Down
2 changes: 1 addition & 1 deletion pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ useSeoMeta({
});
defineOgImage({
component: 'OgImageSDK',
component: 'OgImageZK',
title: page.value.title,
description: page.value.description,
});
Expand Down

0 comments on commit be1626b

Please sign in to comment.