fix: use relative paths for SVG imports to pass Vite fs.allow during build
Deploy Slides / build-and-deploy (push) Successful in 1m15s

Slidev converts <img src> to ES imports during build. Absolute paths like
/pipeline.svg resolve to the filesystem root, failing the slidev:slide-import-guard
plugin. Changed to relative ../public/ paths so imports resolve within the project.
This commit is contained in:
2026-05-30 22:20:18 +08:00
parent 6014a576ff
commit 659c22707b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# 系统架构全景
<div class="mt-2 flex justify-center">
<img src="/architecture.svg" class="w-full max-h-[500px] object-contain" />
<img src="../public/architecture.svg" class="w-full max-h-[500px] object-contain" />
</div>