Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
juliadai8 committed Apr 23, 2024
1 parent 081760a commit 59cd2f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
basePath: "/travelBuddy",
output: "export",
reactStrictMode: true,
images: { unoptimized: true }
};

export default nextConfig;
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use client";

import Header from "../components/Header";
import HomePage from "@/pages/HomePage";
Expand All @@ -22,6 +23,7 @@ const inter = Inter({ subsets: ["latin"] });
<html lang="en">
<body className={inter.className}>
<Header />
<HomePage/>
<div className="content">{children}</div>
</body>
</html>
Expand Down

0 comments on commit 59cd2f1

Please sign in to comment.