Add Podman compose support and fix frontend production CSS

Former-commit-id: f197ec0f20
This commit is contained in:
Ken Simpson
2026-03-09 11:51:37 -07:00
parent 91a63cf17a
commit d6f97df336
6 changed files with 146 additions and 15 deletions
+7 -5
View File
@@ -1,11 +1,13 @@
Dockerfile
.dockerignore
node_modules
npm-debug.log
README.md
.next
.git
.env
.env.local
.env.*
eslint.config.mjs
node_modules
npm-debug.log*
build_logs*.txt
build_output.txt
build_error.txt
errors.txt
server_logs*.txt
+1 -1
View File
@@ -70,4 +70,4 @@ body {
/* Keep popups fully bright and interactive above the dimmed canvas */
.map-focus-active .maplibregl-popup {
z-index: 10 !important;
}
}
+7
View File
@@ -0,0 +1,7 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
};
export default config;