This is an automated email from the ASF dual-hosted git repository. harishgokul01 pushed a commit to branch development in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
commit bfb4166142e10c990913079f2d3ade20210f1e4f Author: harish876 <[email protected]> AuthorDate: Tue Jan 20 01:06:15 2026 +0000 using vercel.json instead of vercel.ts --- ecosystem/monitoring/reslens/vercel.json | 9 +++++++++ ecosystem/monitoring/reslens/vercel.ts | 27 --------------------------- 2 files changed, 9 insertions(+), 27 deletions(-) diff --git a/ecosystem/monitoring/reslens/vercel.json b/ecosystem/monitoring/reslens/vercel.json new file mode 100644 index 00000000..08768319 --- /dev/null +++ b/ecosystem/monitoring/reslens/vercel.json @@ -0,0 +1,9 @@ +{ + "framework": "vite", + "rewrites": [ + { + "source": "/(.*)", + "destination": "/index.html" + } + ] +} diff --git a/ecosystem/monitoring/reslens/vercel.ts b/ecosystem/monitoring/reslens/vercel.ts deleted file mode 100644 index 15a9f384..00000000 --- a/ecosystem/monitoring/reslens/vercel.ts +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -import { routes, type VercelConfig } from '@vercel/config/v1'; - -export const config: VercelConfig = { - framework: 'vite', - rewrites: [ - routes.rewrite('/(.*)', '/index.html'), - ], -};
