This commit is contained in:
Adam 2023-06-19 00:36:21 -04:00
parent 5792a01ca8
commit 1dea2f545d
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
# syntax=docker/dockerfile:experimental
FROM node:alpine
COPY . .
CMD ["npm", "run", "start"]
EXPOSE 3000
CMD npm run start
EXPOSE 3006

View file

@ -3,5 +3,4 @@ import { defineConfig } from "vite";
export default defineConfig({
plugins: [solid()],
server: { port: 3000 }, // changing this breaks tailwind???
});