revert ae03ff059bad90c6ab220c26442a2c15799e36e7

revert move config to fix docker compose being grumpy
This commit is contained in:
Lee 2023-07-02 13:55:18 +00:00
parent ae03ff059b
commit c925aec7c7
4 changed files with 3 additions and 3 deletions

@ -12,4 +12,4 @@ services:
ports: ports:
- 3000:3000 - 3000:3000
volumes: volumes:
- ./:/usr/src/app/config - ./config.json:/usr/src/app/config.json

@ -1,7 +1,7 @@
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import Config from "../../config/config.json"; import Config from "../../config.json";
const inter = Inter({ subsets: ["latin"] }); const inter = Inter({ subsets: ["latin"] });

@ -1,5 +1,5 @@
import Image from "next/image"; import Image from "next/image";
import Config from "../../config/config.json"; import Config from "../../config.json";
export default function Home() { export default function Home() {
return ( return (