Skip to content

v3.4.19

Choose a tag to compare

@github-actions github-actions released this 11 Dec 00:20
· 1 commit to main since this release
5c833b7

Automatic release for TailwindCSS v3.4.19

  1. Create input.css in your project:
@import 'tailwindcss';
  1. Create docker-compose.yml in your project:
services:
  tailwindcss:
    image: ghcr.io/scriptogre/tailwindcss:3.4.19
    tty: true  # Required for watch mode
    volumes:
      - .:/app
    command: -i ./input.css -o ./output.css --watch
  1. Or run docker run command (note the -t flag is required for watch mode):
docker run -t -v "$(pwd)":/app \
  ghcr.io/scriptogre/tailwindcss:3.4.19 -i ./input.css -o ./output.css --watch

Container available at ghcr.io/scriptogre/tailwindcss:3.4.19