Skip to content

Commit 533b62f

Browse files
updates on example site to get it working with client side only
1 parent 6567b1a commit 533b62f

File tree

10 files changed

+4268
-7
lines changed

10 files changed

+4268
-7
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
npm-debug.log
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM node:20.11.0-alpine3.18
2+
3+
WORKDIR /usr/src/app
4+
5+
COPY . .
6+
RUN npm install
7+
8+
EXPOSE 3000
9+
CMD [ "npm", "start" ]

0 commit comments

Comments
 (0)