This is an automated email from the ASF dual-hosted git repository.
paksyd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new d452abe0949 HBASE-29878 Improve the Documentation UI (addendum) - Fix
504 (Outdated Optimize Dep) error (#7896)
d452abe0949 is described below
commit d452abe0949fc935f67027feff868680d60f2651
Author: Yurii Palamarchuk <[email protected]>
AuthorDate: Tue Mar 10 14:06:52 2026 +0100
HBASE-29878 Improve the Documentation UI (addendum) - Fix 504 (Outdated
Optimize Dep) error (#7896)
[INFO] Errors: Failed to load resource: the server responded with a
status of 504 (Outdated Optimize Dep)
Signed-off-by: Dávid Paksy <[email protected]>
---
hbase-website/vite.config.ts | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/hbase-website/vite.config.ts b/hbase-website/vite.config.ts
index 65e1f6f0a08..42fe40335b4 100644
--- a/hbase-website/vite.config.ts
+++ b/hbase-website/vite.config.ts
@@ -45,5 +45,13 @@ export default defineConfig({
"@": resolve(__dirname, "app")
}
},
- customLogger: logger
+ customLogger: logger,
+ optimizeDeps: {
+ force: true
+ },
+ server: {
+ warmup: {
+ clientFiles: ["./app/**/*.{ts,tsx,js,jsx}"]
+ }
+ }
});