diff options
| -rw-r--r-- | docker-compose.yaml | 2 | ||||
| -rw-r--r-- | src/style.css | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml index ca76bbb..22ccd32 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -4,5 +4,7 @@ services: command: sh -c "npm install && npm run dev" restart: always working_dir: /immich-frame + ports: + - 8080:8080 volumes: - ./:/immich-frame diff --git a/src/style.css b/src/style.css index 1b0109f..14d8ed1 100644 --- a/src/style.css +++ b/src/style.css @@ -1,5 +1,5 @@ @import "tailwindcss" source(none); -@source "../public/*.html"; +@source "../public/index.html"; :root { --immich-dark-primary: rgb(172 203 250); |
