如何使用 parcel-bundler 将 public 目录中的所有文件添加到构建目录
How can add all files in public directory to the build directory with parcel-bundler
我在 React 应用程序上使用 parcel-bundler。但是我意识到我需要使用 HTTP 文件重定向所有文件 index.html,但是当我将 .htaccess 文件添加到我的 public 目录时。构建项目后未添加到 dist 文件夹中。
如何在构建后不手动添加文件的情况下实现这一点?
您可以在 package.json 中设置自定义复制脚本,您可以在构建脚本或任何需要的地方使用它:)
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run copy",
"test": "react-scripts test",
"eject": "react-scripts eject",
"copy": "cp public/.htaccess dist"
},
注意:Windows 用户需要使用 copy
命令而不是 cp
我在 React 应用程序上使用 parcel-bundler。但是我意识到我需要使用 HTTP 文件重定向所有文件 index.html,但是当我将 .htaccess 文件添加到我的 public 目录时。构建项目后未添加到 dist 文件夹中。
如何在构建后不手动添加文件的情况下实现这一点?
您可以在 package.json 中设置自定义复制脚本,您可以在构建脚本或任何需要的地方使用它:)
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && npm run copy",
"test": "react-scripts test",
"eject": "react-scripts eject",
"copy": "cp public/.htaccess dist"
},
注意:Windows 用户需要使用 copy
命令而不是 cp