fix: use relative paths for SVG imports to pass Vite fs.allow during build
Deploy Slides / build-and-deploy (push) Successful in 1m15s
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:
@@ -15,5 +15,5 @@ Eino Chain 驱动的智能提示词生成
|
||||
</Item>
|
||||
|
||||
<div class="flex justify-center">
|
||||
<img src="/prompt-agent.svg" class="w-full max-h-[160px] object-contain" />
|
||||
<img src="../public/prompt-agent.svg" class="w-full max-h-[160px] object-contain" />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user