如何在Azure函数上运行ReactJS应用程序?

时间:2019-06-29 12:09:22

标签: azure azure-devops azure-functions

我创建了一个Azure函数,并在其上部署了我的构建ReactJS应用:

enter image description here

我可以在/wwwroot文件夹中找到所有文件:

enter image description here

当我访问URL时,我看到:

enter image description here

在Azure Function上运行我的React应用程序需要做什么?

1 个答案:

答案 0 :(得分:2)

我想您的目标是以无服务器方式运行静态网站。尽管可以serve files from Functions,但更好的方法是将网站文件存储在Blob存储static website hosting中。参考架构可用from Microsoft's documentation

Reference architecture

This video说明了如何创建管道以将文件部署到Blob存储。

然后您可以将函数用作proxy to the files in Storage