Skip to content

Commit cae511c

Browse files
committed
Merge branch 'dev' into shadcn-image
2 parents 129ab3e + 3bc62ca commit cae511c

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ yarn dev
9696
- Pro Tip:
9797
- Explore scripts within `package.json` for more build options
9898
- Get **faster** production builds by building only one language. E.g. in your `.env` file, set `BUILD_LOCALES=en` to build the content only in English
99+
- To build the site in other selected languages too, you need to set them in `BUILD_LOCALES`, eg: `BUILD_LOCALES=en,es` if you also want to build only English (required) and Spanish.
100+
- To build all languages, simply comment this line out with a hash mark, eg: `# BUILD_LOCALES=`
99101

100102
By default the script will build all the languages (complete list in `i18n.config.json`).
101103

src/components/MergeInfographic/MergeInfographic.stories.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { Box } from "@chakra-ui/react"
22
import { Meta, StoryObj } from "@storybook/react"
33

4-
import { ContentContainer } from "@/components/MdComponents"
5-
64
import { langViewportModes } from "../../../.storybook/modes"
75

86
import MergeInfographicComponent from "."
@@ -21,9 +19,7 @@ const meta = {
2119
decorators: [
2220
(Story) => (
2321
<Box maxW="1008px" mx="auto">
24-
<ContentContainer>
25-
<Story />
26-
</ContentContainer>
22+
<Story />
2723
</Box>
2824
),
2925
],

0 commit comments

Comments
 (0)