Some checks failed
Deploy / deploy (push) Has been cancelled
旧 Django 后端 2026-08-26 下线、回滚路径作废,代码里还留着几处以它为前提的
死代码和过期注释。
- PUBLIC_WS_URL / PUBLIC_OJ_URL 全部删除。BaseWebSocket 的
`${PUBLIC_WS_URL}/${path}/` fallback 是 Channels 时代的写法,而三个子类
早就各自传 url,等于永不执行;config.vue 里 PUBLIC_OJ_URL 只是个会被
getWebsiteConfig() 立刻覆盖、且指着 :8000 的假初值。WebSocketConfig.path
随之去掉,url 改成必填。
- vite.config:删掉 /api2、/ws2 的迁移期注释,换成还成立的约束(代理这三段
要和 docker/Caddyfile 同步);newBackend 改名 backend。
- 六处 “回滚时旧后端还要读” 换成真实理由:snake_case 保留的结论不变,但因为
判题机按这套键名写、存量 JSONB 就是这形状。
- CLAUDE.md:数据库一节开头「不写迁移 + 先想清楚回滚」与下一节的 drizzle
migration 自相矛盾,改掉;判题状态码不再要求同步到 OnlineJudge,理由换成
历史 submission.result 和沙箱用的就是这套编码。
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
173 lines
4.9 KiB
TypeScript
173 lines
4.9 KiB
TypeScript
import { fileURLToPath, URL } from "node:url"
|
||
import { defineConfig, loadEnv, type Plugin } from "vite"
|
||
import vue from "@vitejs/plugin-vue"
|
||
import legacy from "@vitejs/plugin-legacy"
|
||
import AutoImport from "unplugin-auto-import/vite"
|
||
import Components from "unplugin-vue-components/vite"
|
||
import { NaiveUiResolver } from "unplugin-vue-components/resolvers"
|
||
|
||
// 显式保留 Chrome 90 所需的运行时兼容项,避免 plugin-legacy 对每个产物执行 Babel 扫描。
|
||
// 升级前端依赖后需要重新审计此列表。
|
||
const polyfills = [
|
||
"es.aggregate-error.cause",
|
||
"es.array-buffer.detached",
|
||
"es.array-buffer.transfer-to-fixed-length",
|
||
"es.array-buffer.transfer",
|
||
"es.array.at",
|
||
"es.array.find-last-index",
|
||
"es.array.push",
|
||
"es.array.to-reversed",
|
||
"es.array.to-sorted",
|
||
"es.array.to-spliced",
|
||
"es.array.with",
|
||
"es.error.cause",
|
||
"es.iterator.constructor",
|
||
"es.iterator.drop",
|
||
"es.iterator.every",
|
||
"es.iterator.filter",
|
||
"es.iterator.find",
|
||
"es.iterator.flat-map",
|
||
"es.iterator.for-each",
|
||
"es.iterator.map",
|
||
"es.iterator.reduce",
|
||
"es.iterator.some",
|
||
"es.iterator.to-array",
|
||
"es.json.parse",
|
||
"es.json.stringify",
|
||
"es.map.get-or-insert-computed",
|
||
"es.map.get-or-insert",
|
||
"es.object.has-own",
|
||
"es.regexp.flags",
|
||
"es.set.difference.v2",
|
||
"es.set.intersection.v2",
|
||
"es.set.is-disjoint-from.v2",
|
||
"es.set.is-subset-of.v2",
|
||
"es.set.is-superset-of.v2",
|
||
"es.set.symmetric-difference.v2",
|
||
"es.set.union.v2",
|
||
"es.string.at-alternative",
|
||
"es.typed-array.at",
|
||
"es.typed-array.find-last-index",
|
||
"es.typed-array.find-last",
|
||
"es.typed-array.set",
|
||
"es.typed-array.to-reversed",
|
||
"es.typed-array.to-sorted",
|
||
"es.typed-array.with",
|
||
"es.uint8-array.set-from-base64",
|
||
"es.uint8-array.set-from-hex",
|
||
"es.uint8-array.to-base64",
|
||
"es.uint8-array.to-hex",
|
||
"es.weak-map.get-or-insert-computed",
|
||
"es.weak-map.get-or-insert",
|
||
"esnext.array.group",
|
||
"web.dom-exception.stack",
|
||
"web.immediate",
|
||
"web.structured-clone",
|
||
"web.url-search-params.delete",
|
||
"web.url-search-params.has",
|
||
"web.url-search-params.size",
|
||
"web.url.can-parse",
|
||
]
|
||
|
||
// index.html 里按需注入 MaxKB 脚本(原 Rsbuild EJS 模板的等价实现)
|
||
function injectMaxkb(maxkbUrl: string | undefined): Plugin {
|
||
return {
|
||
name: "inject-maxkb",
|
||
transformIndexHtml(html) {
|
||
if (!maxkbUrl) return html
|
||
return {
|
||
html,
|
||
tags: [
|
||
{
|
||
tag: "script",
|
||
attrs: { async: true, defer: true, src: maxkbUrl },
|
||
injectTo: "head",
|
||
},
|
||
],
|
||
}
|
||
},
|
||
}
|
||
}
|
||
|
||
export default defineConfig(({ mode }) => {
|
||
const env = loadEnv(mode, process.cwd(), "PUBLIC_")
|
||
|
||
// 开发时一律指向本机后端(apps/api,3000)。
|
||
const backend = {
|
||
target: "http://localhost:3000",
|
||
changeOrigin: true,
|
||
}
|
||
|
||
return {
|
||
plugins: [
|
||
vue(),
|
||
// 机房存在 Chrome 91 等旧浏览器:不做 SystemJS 双构建,
|
||
// 只按使用情况给现代产物注入 core-js API polyfill(Array.at 等)
|
||
legacy({
|
||
renderLegacyChunks: false,
|
||
modernTargets: "chrome>=90",
|
||
modernPolyfills: polyfills,
|
||
}),
|
||
AutoImport({
|
||
imports: [
|
||
"vue",
|
||
"vue-router",
|
||
"@vueuse/core",
|
||
"pinia",
|
||
{
|
||
"naive-ui": [
|
||
"useDialog",
|
||
"useMessage",
|
||
"useNotification",
|
||
"useLoadingBar",
|
||
],
|
||
},
|
||
{
|
||
from: "naive-ui",
|
||
imports: [
|
||
"DataTableColumn",
|
||
"FormRules",
|
||
"FormItemRule",
|
||
"SelectOption",
|
||
"UploadCustomRequestOptions",
|
||
"UploadFileInfo",
|
||
"MenuOption",
|
||
"DropdownDividerOption",
|
||
"DropdownOption",
|
||
],
|
||
type: true,
|
||
},
|
||
],
|
||
dts: "./src/auto-imports.d.ts",
|
||
}),
|
||
Components({
|
||
resolvers: [NaiveUiResolver()],
|
||
dts: "./src/components.d.ts",
|
||
}),
|
||
injectMaxkb(env["PUBLIC_MAXKB_URL"]),
|
||
],
|
||
envPrefix: "PUBLIC_",
|
||
resolve: {
|
||
alias: {
|
||
// mermaid-legacy (mermaid@9) 写死了 UMD 路径,新版 cytoscape 的 exports
|
||
// 不允许 import 条件访问它,转到 ESM 产物
|
||
"cytoscape/dist/cytoscape.umd.js": "cytoscape/dist/cytoscape.esm.mjs",
|
||
utils: fileURLToPath(new URL("./src/utils", import.meta.url)),
|
||
oj: fileURLToPath(new URL("./src/oj", import.meta.url)),
|
||
admin: fileURLToPath(new URL("./src/admin", import.meta.url)),
|
||
shared: fileURLToPath(new URL("./src/shared", import.meta.url)),
|
||
},
|
||
},
|
||
server: {
|
||
port: 5173,
|
||
proxy: {
|
||
// 只有这三段过后端,和生产的 Caddy 认的是同一套(docker/Caddyfile),
|
||
// 别在这里加代理规则而不同步改 Caddyfile。
|
||
"/api": backend,
|
||
"/public": backend,
|
||
"/ws": { ...backend, ws: true },
|
||
},
|
||
},
|
||
}
|
||
})
|