diff --git a/docs/api-reference/next.config.js/custom-webpack-config.md b/docs/api-reference/next.config.js/custom-webpack-config.md index d339d1ae14548..ed8faf1b61a02 100644 --- a/docs/api-reference/next.config.js/custom-webpack-config.md +++ b/docs/api-reference/next.config.js/custom-webpack-config.md @@ -15,7 +15,6 @@ Before continuing to add custom webpack configuration to your application make s Some commonly asked for features are available as plugins: -- [@zeit/next-less](https://github.com/vercel/next-plugins/tree/master/packages/next-less) - [@next/mdx](https://github.com/vercel/next.js/tree/canary/packages/next-mdx) - [@next/bundle-analyzer](https://github.com/vercel/next.js/tree/canary/packages/next-bundle-analyzer) diff --git a/docs/basic-features/built-in-css-support.md b/docs/basic-features/built-in-css-support.md index 14be187874a1c..b160a2340484c 100644 --- a/docs/basic-features/built-in-css-support.md +++ b/docs/basic-features/built-in-css-support.md @@ -181,19 +181,6 @@ module.exports = { } ``` -## Less and Stylus Support - -To support importing `.less` or `.styl` files you can use the following plugins: - -- [@zeit/next-less](https://github.com/vercel/next-plugins/tree/master/packages/next-less) -- [@zeit/next-stylus](https://github.com/vercel/next-plugins/tree/master/packages/next-stylus) - -If using the less plugin, don't forget to add a dependency on less as well, otherwise you'll see an error like: - -```bash -Error: Cannot find module 'less' -``` - ## CSS-in-JS