> 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: wix-configs-backend ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-configs-backend/introduction.md ## Article Content: # Introduction > This module is intended for use when building [Velo packages](https://support.wix.com/en/article/creating-a-velo-package-3964385) in Wix Blocks. To use the module, import `{ getPackageConfig }` from `wix-configs-backend`: ```js import { getPackageConfig } from 'wix-configs-backend'; ``` When you build a Velo package, you can include a `config.json` file. Users of the package can edit this file and add personalized information such as settings preferences. The `wix-configs-backend` module allows you to access the contents of the `config.json` file in your package code, using the [`getPackageConfig()`](#getPackageConfig) function.