[中文文档](./README-cn.md)
npm install parcel-plugin-change-fileOn Parcel build end, change index.html context, and copy static files in outDir
``sh`
$ yarn add -D parcel-plugin-change-file
Add
`html`
`
The lodash.min.js jump to parcel bundler, this build end html:html`
Add in index.html
`html`
Create parcel-plugin-change-file.js in project-dir
`js`
module.exports = {
html: ['Product Name'],
};
parcel build end:
`html`
Create parcel-plugin-change-file.js in project-dir
`js`
module.exports = {
copy: ['src/assets'],
};
File tree like this:

`js`
module.exports = {
timeout: 30, // setTimeout replace Html file
replaceName: 'parcel-plugin-change-file', // default html replaceName
html: ['hello'], // change string to html
copy: ['src/assets'], // copy files in outDir
};
Add changeFile=false
```
$ changeFile=false parcel index.html