fix config loading
All checks were successful
Publish Docker Image / docker (push) Successful in 2m2s

This commit is contained in:
Lee
2023-07-13 10:39:37 +01:00
parent 5336a89dcc
commit 6ad1b6b85d
6 changed files with 25 additions and 21 deletions

View File

@ -1,10 +1,11 @@
"use client";
import { Config } from "@/src/types/config";
import Image from "next/image";
import { Fragment } from "react";
import { useLanyardWS } from "use-lanyard";
import Config from "../../../config.yml";
const Config: Config = require("../../../config.yml") as any;
function LanyardWrapper(props: { children: any }) {
return <Fragment>{props.children}</Fragment>;

View File

@ -1,9 +1,10 @@
import { Config } from "@/src/types/config";
import { config } from "@fortawesome/fontawesome-svg-core";
import "@fortawesome/fontawesome-svg-core/styles.css";
import { Inter } from "next/font/google";
import "./globals.css";
import Config from "../../config.yml";
const Config: Config = require("../../config.yml") as any;
config.autoAddCss = false;
const inter = Inter({ subsets: ["latin"] });

View File

@ -1,12 +1,14 @@
import { Config } from "@/src/types/config";
import { library } from "@fortawesome/fontawesome-svg-core";
import { fab } from "@fortawesome/free-brands-svg-icons";
import { far } from "@fortawesome/free-regular-svg-icons";
import { fas } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import Image from "next/image";
import Config from "../../config.yml";
import Avatar from "./components/Avatar";
const Config: Config = require("../../config.yml") as any;
library.add(fab, far, fas); // Loading in the icons from FontAwesome
export default function Home() {

View File

@ -1,5 +1,3 @@
import { YAMLMap } from "js-yaml";
export interface Config {
configVersion: string;
name: string;
@ -52,6 +50,6 @@ export interface Config {
// Parse the YAML content and convert it to the defined type
declare module "*.yml" {
const content: YAMLMap & Config;
const content: any;
export default content;
}