diff --git a/docs/7.migration/2.configuration.md b/docs/7.migration/2.configuration.md index 1c6a50b0ee..7910bf600f 100644 --- a/docs/7.migration/2.configuration.md +++ b/docs/7.migration/2.configuration.md @@ -56,7 +56,7 @@ Nuxt configuration will be loaded using [`unjs/jiti`](https://github.com/unjs/ji #### ESM Syntax -Nuxt 3 is an [ESM native framework](/docs/guide/going-further/esm). Although [`unjs/jiti`](https://github.com/unjs/jiti) provides semi compatibility when loading `nuxt.config` file, avoid any usage of `require` and `module.exports` in this file. +Nuxt 3 is an [ESM native framework](/docs/guide/concepts/esm). Although [`unjs/jiti`](https://github.com/unjs/jiti) provides semi compatibility when loading `nuxt.config` file, avoid any usage of `require` and `module.exports` in this file. 1. Change `module.exports` to `export default` 1. Change `const lib = require('lib')` to `import lib from 'lib'`