Zeit/Now - 更新现有部署而不更改 link - 这可能吗?
Zeit/Now - Update existing deployment without changing link - is it possible?
我在 now
上托管了一个 vue.js 应用程序。它是一个已编译的构建,仅由 now --public
托管,没有 json 构建和其他内容。我想知道是否可以在不更改部署 URL 或创建新部署的情况下,在此部署中添加 files/assets 或 change/update 文件。如果是,最简单的方法是什么?
我的问题听起来可能很愚蠢,但我已尽我所能,但未能找到答案。
无法将文件添加到现有部署。
Deployment Immutability
It is worth pointing out that there is no notion of editing or
modifying an existing deployment. When you make a source or config
change, a new deployment is always created.
https://zeit.co/docs/v2/deployments/concepts/immutability/
相反,您应该使用部署 Aliases 为您的项目保留一个 url。
我在 now
上托管了一个 vue.js 应用程序。它是一个已编译的构建,仅由 now --public
托管,没有 json 构建和其他内容。我想知道是否可以在不更改部署 URL 或创建新部署的情况下,在此部署中添加 files/assets 或 change/update 文件。如果是,最简单的方法是什么?
我的问题听起来可能很愚蠢,但我已尽我所能,但未能找到答案。
无法将文件添加到现有部署。
Deployment Immutability
It is worth pointing out that there is no notion of editing or modifying an existing deployment. When you make a source or config change, a new deployment is always created. https://zeit.co/docs/v2/deployments/concepts/immutability/
相反,您应该使用部署 Aliases 为您的项目保留一个 url。