React + firebase 托管
React + firebase hosting
我使用 create react app 进行开发和应用 (https://github.com/facebookincubator/create-react-app)。
我创建了一个生产版本:
npm run build
这会创建一个文件夹 /build,然后我使用 firebase 客户端上传它:
firebase deploy
一切正常,但在 Web 应用程序 webpack 中,显示我所有的代码而不使用 uglify(请参阅文件夹 webpack://)
如何从 React 或 Firebase 托管中删除此文件夹?此文件夹不在 /build 文件夹中。
显示源代码是因为您正在为您的项目部署一个 .js.map
文件。您可以 delete the file after building, or just add it to your Firebase ignore 所以它不会部署。
我使用 create react app 进行开发和应用 (https://github.com/facebookincubator/create-react-app)。
我创建了一个生产版本:
npm run build
这会创建一个文件夹 /build,然后我使用 firebase 客户端上传它:
firebase deploy
一切正常,但在 Web 应用程序 webpack 中,显示我所有的代码而不使用 uglify(请参阅文件夹 webpack://)
如何从 React 或 Firebase 托管中删除此文件夹?此文件夹不在 /build 文件夹中。
显示源代码是因为您正在为您的项目部署一个 .js.map
文件。您可以 delete the file after building, or just add it to your Firebase ignore 所以它不会部署。