rewrite
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 33s

This commit is contained in:
2026-08-02 19:58:39 +05:00
parent 292bb29099
commit c6015e27a6
162 changed files with 18094 additions and 469 deletions
+21 -4
View File
@@ -1,7 +1,24 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import path from "node:path";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(import.meta.dirname, "./src"),
},
},
server: {
host: true,
port: 5173,
// Running inside the dev container; allow the mapped host.
allowedHosts: true,
watch: {
// File events don't always propagate through the bind mount; poll instead.
usePolling: true,
},
},
});