From 5c0c1bd810b23814b6bd5019cbe08205fc5eca7f Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Tue, 10 Dec 2024 12:18:10 +0700 Subject: [PATCH] remove config s3 --- src/app.config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app.config.ts b/src/app.config.ts index 43b0eee..c6dbe0c 100644 --- a/src/app.config.ts +++ b/src/app.config.ts @@ -5,9 +5,6 @@ import leave from '@/api/api.checkin' import history from '@/api/api.history' import message from '@/api/api.message' -// environment variables -export const s3ClusterUrl = import.meta.env.VITE_S3CLUSTER_PUBLIC_URL - const API = { /**leave */ ...leave, @@ -19,5 +16,4 @@ const API = { export default { API: API, - s3ClusterUrl, }