Skip to content
This repository was archived by the owner on Feb 1, 2020. It is now read-only.

Add nodir option to eject method to avoid error #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/react.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const glob = require('glob-all')
// for more information about PurgeCSS.
// Specify the path of the html files and source files
new PurgecssPlugin({
paths: [paths.appHtml, ...glob.sync(`${paths.appSrc}/*`)]
paths: [paths.appHtml, ...glob.sync(`${paths.appSrc}/*`, { nodir: true })]
}),
```

Expand Down