mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
fix(config): stop relying on global public config
This commit is contained in:
parent
d6057857fb
commit
f378862b23
9 changed files with 21 additions and 13 deletions
|
|
@ -8,6 +8,7 @@
|
|||
// https://docs.astro.build/core-concepts/astro-components/
|
||||
|
||||
import { DoesItAPI } from '~/helpers/api/client.js'
|
||||
import { publicRuntimeConfig } from '~/helpers/public-runtime-config.mjs'
|
||||
import {
|
||||
applyResponseDefaults
|
||||
} from '~/helpers/astro/request.js'
|
||||
|
|
@ -31,7 +32,7 @@ const kinds = deviceIndex.items.map( device => {
|
|||
<Layout
|
||||
headOptions={ {
|
||||
title: 'List of Apple Devices for Apple Silicon App Support',
|
||||
description: `List of devices for Apple Silicon and the ${ global.$config.processorsVerbiage } Processors`,
|
||||
description: `List of devices for Apple Silicon and the ${ publicRuntimeConfig.processorsVerbiage } Processors`,
|
||||
// meta,
|
||||
// link,
|
||||
// structuredData: this.structuredData,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue