From c925aec7c70ddff0ce3b5d4c6ca20f2956a8b657 Mon Sep 17 00:00:00 2001 From: Lee Date: Sun, 2 Jul 2023 13:55:18 +0000 Subject: [PATCH] revert ae03ff059bad90c6ab220c26442a2c15799e36e7 revert move config to fix docker compose being grumpy --- config/config.json => config.json | 0 docker-compose.yml | 2 +- src/app/layout.tsx | 2 +- src/app/page.tsx | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename config/config.json => config.json (100%) diff --git a/config/config.json b/config.json similarity index 100% rename from config/config.json rename to config.json diff --git a/docker-compose.yml b/docker-compose.yml index 32abc79..f3f0f58 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,4 +12,4 @@ services: ports: - 3000:3000 volumes: - - ./:/usr/src/app/config + - ./config.json:/usr/src/app/config.json diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8c4d783..74a11ed 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,7 @@ import { Inter } from "next/font/google"; import "./globals.css"; -import Config from "../../config/config.json"; +import Config from "../../config.json"; const inter = Inter({ subsets: ["latin"] }); diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c94ebd..b3a26b7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,5 +1,5 @@ import Image from "next/image"; -import Config from "../../config/config.json"; +import Config from "../../config.json"; export default function Home() { return (