ok
All checks were successful
Deploy & Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Successful in 3m14s
All checks were successful
Deploy & Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Successful in 3m14s
Took 17 minutes
This commit is contained in:
parent
24ed4c96a7
commit
071fe82685
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,7 +6,6 @@ node_modules
|
||||
.env*.local
|
||||
next-env.d.ts
|
||||
.sentryclirc
|
||||
config.json
|
||||
sw.*
|
||||
workbox-*
|
||||
swe-worker-*
|
||||
|
@ -33,7 +33,6 @@ COPY --from=builder --chown=nextjs:nextjs /usr/src/app/public ./public
|
||||
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/next.config.mjs ./next.config.mjs
|
||||
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/package.json ./package.json
|
||||
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/docs ./docs
|
||||
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/config.json.example ./config.json
|
||||
|
||||
ENV NODE_ENV production
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
"viewport": {
|
||||
"themeColor": "#A855F7"
|
||||
},
|
||||
"contentSource": "{process}/docs",
|
||||
"contentSource": "https://git.rainnny.club/PulseApp/docs-content.git",
|
||||
"contentEditUrl": "https://git.rainnny.club/PulseApp/docs-content/src/branch/master/{slug}{ext}",
|
||||
"socialLinks": [
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
import type { Metadata } from "next";
|
||||
import type { Metadata, Viewport } from "next";
|
||||
import "./styles/globals.css";
|
||||
import { ReactElement, ReactNode } from "react";
|
||||
import { ThemeProvider } from "@/components/theme-provider";
|
||||
@ -7,13 +7,13 @@ import Sidebar from "@/components/sidebar/sidebar";
|
||||
import Footer from "@/components/footer";
|
||||
import { TooltipProvider } from "@/components/ui/tooltip";
|
||||
import { getDocsContent } from "@/lib/mdx";
|
||||
import config from "@/config";
|
||||
|
||||
/**
|
||||
* The metadata for this app.
|
||||
*/
|
||||
// export const metadata: Metadata = config.metadata;
|
||||
export const metadata: Metadata = { title: "test", description: "testing" };
|
||||
// export const viewport: Viewport = config.viewport;
|
||||
export const metadata: Metadata = config.metadata;
|
||||
export const viewport: Viewport = config.viewport;
|
||||
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user