What problem does this feature solve?
support configure a list of globs/directories/files to watch for file changes, and these file changes will trigger a page reload.
export default {
dev: {
watchFiles: : ['src/**/*.php', 'public/**/*'],
},
};
What does the proposed API look like?
like webpack#devServer.watchFiles
What problem does this feature solve?
support configure a list of globs/directories/files to watch for file changes, and these file changes will trigger a page reload.
What does the proposed API look like?
like webpack#devServer.watchFiles