Skip to content

Commit 85e5d49

Browse files
committed
feat: add video support
1 parent 6a75908 commit 85e5d49

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pexels-grid/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ FROM node:20-alpine
22
COPY . .
33
RUN yarn
44
RUN yarn build
5+
RUN rm -rf node_modules
56
ENTRYPOINT ["yarn", "start"]

pexels-grid/next.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { NextConfig } from "next";
22

33
const nextConfig: NextConfig = {
44
/* config options here */
5+
output: 'standalone',
56
};
67

78
export default nextConfig;

0 commit comments

Comments
 (0)