# 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.
