generated from Fascinated/nextjs-13-template-with-tailwindcss
fix config loading
All checks were successful
Publish Docker Image / docker (push) Successful in 2m2s
All checks were successful
Publish Docker Image / docker (push) Successful in 2m2s
This commit is contained in:
@ -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() {
|
||||
|
Reference in New Issue
Block a user