Skip to content

Commit 36fe8e4

Browse files
committed
remove vercel related packages
1 parent 52ee30a commit 36fe8e4

4 files changed

Lines changed: 1 addition & 59 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ COPY --chown=node:node --from=builder /app/.next/static ./.next/static
5353
COPY --chown=node:node --from=builder /app/public ./public
5454

5555
ENV PORT=3000
56-
ENV HOST=0.0.0.0
56+
ENV HOSTNAME=0.0.0.0
5757

5858
EXPOSE 3000
5959
CMD ["node", "server.js"]

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353
"@tanstack/react-table": "8.19.3",
5454
"@uiw/codemirror-theme-dracula": "4.23.0",
5555
"@uiw/react-codemirror": "4.23.0",
56-
"@vercel/analytics": "1.3.1",
57-
"@vercel/speed-insights": "1.0.12",
5856
"@visx/group": "3.3.0",
5957
"@visx/shape": "3.5.0",
6058
"@visx/text": "3.3.0",

pnpm-lock.yaml

Lines changed: 0 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/layout.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import { ReactNode } from 'react'
22

33
import { Metadata, Viewport } from 'next'
44

5-
import { Analytics } from '@vercel/analytics/react'
6-
import { SpeedInsights } from '@vercel/speed-insights/next'
75
import { Inter, Noto_Sans_Thai } from 'next/font/google'
86

97
import '@/styles/index.css'
@@ -43,9 +41,7 @@ export default async function RootLayout({
4341
<Footer />
4442
</LayoutWithTheme>
4543
</Providers>
46-
<SpeedInsights />
4744
</body>
48-
<Analytics />
4945
</html>
5046
)
5147
}

0 commit comments

Comments
 (0)