> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: generate manifest ## Article: generate manifest ## Article Link: https://dev.wix.com/docs/wix-cli/command-reference/project-commands/app-only/generate-manifest.md ## Article Content: # wix generate manifest Regenerates the auto-generated portion of an [Editor React Component](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/site-extensions/editor-react-components/about-editor-react-components.md) extension's manifest.
**Important**: You must run this command whenever you make manual changes to a component's React code, CSS, or types. AI coding agents that use [Wix skills](https://dev.wix.com/docs/wix-cli/command-reference/global-commands/skills-add.md) know to regenerate the manifest automatically, so you only need to run it yourself when you edit the component directly.
## Usage ```bash wix generate manifest ``` ## After the command runs For each Editor React Component in your project, the command: - Regenerates `.generated.ts` with an updated `editorElement` object. - Doesn't modify `.extension.ts`, which holds the rest of the manifest and imports the `editorElement` from the generated file. For more information about the auto-generated output, see [Editor React Component Extension Files and Code](https://dev.wix.com/docs/wix-cli/guides/extensions/site-extensions/site-widgets/editor-react-components/editor-react-component-extension-files-and-code.md).