0476315322
* feat(security): implement CSRF protection * chore: clean up CSRF implementation - Remove unused generateCsrfToken export from security.ts - Remove redundant /csrf-token path check (GET already exempt) - Restore defineConfig wrapper in vitest.config.ts for type safety * add K8S note in README, fix broken e2e * feat/upload-bar (#30) * feat/upload-bar: add a upload bar when user upload file, indicate the upload process * feat/save-loading-status: add save status when click back button from editor * fix: address PR review issues in upload and save features - Replace deprecated substr() with substring() in UploadContext - Fix broken error handling that checked stale task status - Fix missing useEffect dependency in UploadStatus - Fix CSS class conflict in progress bar styling - Add error recovery for save state in Editor (reset on failure) - Use .finally() instead of .then() to ensure refresh on upload failure - Fix inconsistent indentation in UploadContext * fix e2e tests --------- Co-authored-by: Zimeng Xiong <zxzimeng@gmail.com> * chore: pre-release v0.2.1-dev * Update backend/src/security.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix filename/math random UUID generation --------- Co-authored-by: AdrianAcala <adrianacala017@gmail.com> Co-authored-by: adamant368 <60790941+Yiheng-Liu@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
38 lines
1004 B
TypeScript
38 lines
1004 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
|
|
const versionFilePath = path.resolve(__dirname, "../VERSION");
|
|
let versionFromFile = "0.0.0";
|
|
|
|
try {
|
|
const raw = fs.readFileSync(versionFilePath, "utf8").trim();
|
|
if (raw) {
|
|
versionFromFile = raw;
|
|
}
|
|
} catch (error) {
|
|
console.warn("Unable to read VERSION file:", error);
|
|
}
|
|
|
|
const appVersion = process.env.VITE_APP_VERSION?.trim() || versionFromFile;
|
|
const buildLabel = process.env.VITE_APP_BUILD_LABEL?.trim() || "local development build";
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
define: {
|
|
'import.meta.env.VITE_APP_VERSION': JSON.stringify(appVersion),
|
|
'import.meta.env.VITE_APP_BUILD_LABEL': JSON.stringify(buildLabel),
|
|
},
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:8000",
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
|
},
|
|
},
|
|
},
|
|
});
|