ci: migrate release workflow from GitHub Actions to Gitea Actions #1

Merged
siujamo merged 64 commits from develop into main 2026-06-15 09:34:13 +08:00
3 changed files with 13 additions and 9 deletions
Showing only changes of commit d663cc5d20 - Show all commits
+5
View File
@@ -0,0 +1,5 @@
# Backend API Base URL
VITE_API_BASE_URL=/api
# Redux persistent storage location, use `local` for local storage and `session` for session storage
VITE_REDUX_STORAGE=local
+8
View File
@@ -1,6 +1,14 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
/**
* Redux persistent storage location, use `local` for local storage and `session` for
* session storage
*/
readonly VITE_REDUX_STORAGE: "local" | "session"
/**
* Backend API Base URL
*/
readonly VITE_API_BASE_URL: string
}
-9
View File
@@ -11,14 +11,5 @@ export default defineConfig({
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, '')
}
}
}
})