我在网上尝试了这个Material Components的例子: https://github.com/material-components/material-components-web/tree/master/framework-examples/react
我可以在本地安装的节点上使用它,但我不知道如何编译它来测试我服务器上的代码(我的服务器上没有节点)。
答案 0 :(得分:2)
该示例使用Create React App,您可以使用以下代码构建它以生成:
npm run build
这会创建一个自包含的目录build
。您需要做的就是在服务器上托管它。您不需要在服务器上安装Node,也不需要项目的任何其他文件。这是webpack的主要卖点之一。