diff --git a/Dockerfile b/Dockerfile index 166ee54..2927dc9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16 as web +FROM node:18 as web WORKDIR /web COPY . . WORKDIR /web/server/app/ diff --git a/server/app/src/utils/animation.ts b/server/app/src/utils/animation.ts deleted file mode 100644 index 1cc4f7e..0000000 --- a/server/app/src/utils/animation.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { HTMLMotionProps } from "framer-motion"; - -export const defaultAnimation: HTMLMotionProps<"div"> = { - layout: true, - initial: { scale: 0.8, opacity: 0 }, - animate: { scale: 1, opacity: 1 }, - exit: { scale: 0.8, opacity: 0 }, - transition: { type: "tween" } -};