assemble 相对 page.dest 推送到服务器后无法正常工作

assemble relative page.dest not working after push to the server

## version 
"version": "0.1.0",

描述

我正在使用 page.dest 相对于我的应用程序路径,它在我的本地主机上运行良好。

http://localhost:9000/application/website/index.html

<li><a href="{{relative page.dest "application/website/index.html"}}">link 1</a></li>

问题是当我将它推送到服务器时:所以在服务器中存在一个名为项目申请之前的文件夹:clientwebsite

wwww.server.com/客户端网站/application/website/index.html

所以当我点击任何链接时会转到:wwww.server.com/application/website/index.html(不存在)

而不是 wwww.server.com/clientwebsite/application/website/index.html

有人知道如何解决这个问题吗?

我在路径中丢失了文件夹 dist/

所以我就那样做了:

<li><a href="{{relative page.dest "dist/application/website/index.html"}}">link 1</a></li>

现在它运行良好