Dockerized for dev purposes
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled

This commit is contained in:
2025-11-04 19:25:30 +10:00
parent ca4569cb8f
commit c0618ce3e4
7 changed files with 790 additions and 674 deletions

View File

@@ -14,6 +14,7 @@ export default defineConfig({
ssr: 'resources/js/ssr.ts',
refresh: true,
}),
tailwindcss(),
wayfinder({
formVariants: true,
@@ -30,4 +31,14 @@ export default defineConfig({
autoImport: true,
}),
],
server: {
host: '0.0.0.0',
port: 5173,
hmr: {
host: 'localhost'
},
watch: {
usePolling: true, // Needed for Docker on Windows
},
}
});