Skip to content

Commit

Permalink
fix webserver and lock ts container to 22 (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaiahHarvi authored Dec 16, 2024
2 parents 5545138 + b9aba67 commit 473d1a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/typescript/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TypeScript",
"image": "mcr.microsoft.com/devcontainers/typescript-node",
"image": "mcr.microsoft.com/devcontainers/typescript-node:22",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2.11.0": {},
"ghcr.io/devcontainers/features/git:1": {},
Expand Down
8 changes: 5 additions & 3 deletions src/app/client/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
import tailwindcssAnimate from "tailwindcss-animate";

export default {
darkMode: ["class"],
content: [
'./pages/**/*.{ts,tsx}',
Expand Down Expand Up @@ -73,5 +75,5 @@ module.exports = {
},
},
},
plugins: [require("tailwindcss-animate")],
}
plugins: [tailwindcssAnimate],
};

0 comments on commit 473d1a7

Please sign in to comment.