diff --git a/docs/guide/with-nextjs.md b/docs/guide/with-nextjs.md index e01e660..e435c4f 100644 --- a/docs/guide/with-nextjs.md +++ b/docs/guide/with-nextjs.md @@ -15,8 +15,6 @@ in your `next.config.js`: module.exports = { // othor next config here... webpack: config => { - // ignore nextjs watch content directory - config.watchOptions.ignored = /content/ config.plugins.push(new VeliteWebpackPlugin()) return config } diff --git a/examples/nextjs/next.config.js b/examples/nextjs/next.config.js index 610a0cb..8f20ab6 100644 --- a/examples/nextjs/next.config.js +++ b/examples/nextjs/next.config.js @@ -2,7 +2,6 @@ module.exports = { // othor next config here... webpack: config => { - config.watchOptions.ignored = /content/ config.plugins.push(new VeliteWebpackPlugin()) return config }