Skip to content

Commit 0aac78e

Browse files
committed
add dockerfile
1 parent b23ed4f commit 0aac78e

File tree

4 files changed

+4343
-4
lines changed

4 files changed

+4343
-4
lines changed

app/layout.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ export const metadata = {
1414
template: `%s - ${siteConfig.name}`,
1515
},
1616
description: siteConfig.description,
17-
themeColor: [
18-
{ media: "(prefers-color-scheme: light)", color: "white" },
19-
{ media: "(prefers-color-scheme: dark)", color: "black" },
20-
],
2117
icons: {
2218
icon: "/favicon.ico",
2319
shortcut: "/favicon-16x16.png",

dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ COPY styles ./styles
2727
COPY jsconfig.json .
2828
COPY postcss.config.js .
2929
COPY tailwind.config.js .
30+
COPY next.config.js .
3031

3132

3233
# Next.js collects completely anonymous telemetry data about general usage. Learn more here: https://nextjs.org/telemetry

next.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {import('next').NextConfig} */
2+
module.exports = {
3+
output: "standalone",
4+
};

0 commit comments

Comments
 (0)