> For the complete documentation index, see [llms.txt](https://docs.shopstory.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.shopstory.app/design-tokens/page-containers/max-width.md).

# Max width

Setting page container max width tokens is done via `containerWidths` field in config object:

```typescript
export const shopstoryConfig = {
  //...
  containerWidths: [
    {
      id: "small",
      value: 800,
    },
    {
      id: "large",
      value: 1200,
    },
  ],
}
```

By default max width has value `none` which means that no max width is applied.
