File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,17 +3,17 @@ FROM oven/bun:1 AS base
33WORKDIR /usr/src/app
44
55COPY package.json bun.lockb ./
6-
76RUN bun install --frozen-lockfile
87
98FROM oven/bun:1 AS release
109
11- COPY --from=base /usr/src/app/node_modules node_modules
10+ WORKDIR /usr/src/app
1211
12+ COPY --from=base /usr/src/app/node_modules node_modules
1313COPY . .
1414
1515RUN bun --bun run build
1616
1717CMD bun --bun run start
1818
19- EXPOSE 3000
19+ EXPOSE 14701
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const config: NextConfig = {
66 output : 'standalone' ,
77 trailingSlash : false ,
88 skipTrailingSlashRedirect : true ,
9+ cacheComponents : true ,
910 images : {
1011 remotePatterns : [
1112 {
Original file line number Diff line number Diff line change 1+ 'use client'
2+
13import { ExternalLink } from 'lucide-react'
24import Link from 'next/link'
35import { JSX } from 'react'
46import { FaGithub } from 'react-icons/fa'
57import { FaTelegram , FaYoutube } from 'react-icons/fa6'
6- import { SiBoosty } from 'react-icons/si'
78
89import { ROUTES } from '@/src/constants'
910
You can’t perform that action at this time.
0 commit comments