fix: respect dotfiles in public dir (fix #880)

This commit is contained in:
Evan You
2018-03-02 22:23:48 -05:00
parent 768110643d
commit 59ac4f418f
+1 -1
View File
@@ -149,7 +149,7 @@ module.exports = (api, options) => {
.use(require('copy-webpack-plugin'), [[{
from: api.resolve('public'),
to: api.resolve(options.outputDir),
ignore: ['index.html', '.*']
ignore: ['index.html', '.DS_Store']
}]])
}
})