Replace SITE_CONFIG, UI_CONFIG, METADATA_CONFIG... to SITE, UI, METADATA...

This commit is contained in:
prototypa
2023-08-22 22:22:53 -04:00
parent 9d23150832
commit da8ef74b38
21 changed files with 83 additions and 83 deletions

View File

@@ -1,7 +1,7 @@
---
import '~/assets/styles/tailwind.css';
import { I18N_CONFIG } from "~/utils/config";
import { I18N } from "~/utils/config";
import CommonMeta from '~/components/common/CommonMeta.astro';
import Favicons from '~/components/Favicons.astro';
@@ -19,7 +19,7 @@ export interface Props {
}
const { metadata = {} } = Astro.props;
const { language, textDirection } = I18N_CONFIG;
const { language, textDirection } = I18N;
---
<!DOCTYPE html>