diff --git a/docs/get-started/frameworks/react-native-web-vite.mdx b/docs/get-started/frameworks/react-native-web-vite.mdx index 69966f9e1bf..0dfc77e1823 100644 --- a/docs/get-started/frameworks/react-native-web-vite.mdx +++ b/docs/get-started/frameworks/react-native-web-vite.mdx @@ -153,8 +153,8 @@ Storybook for React Native Web is a [framework](../../contribute/framework.mdx) // these options are used to configure transpilation of node_modules via babel // in most cases, you don't need to configure these options, but they are available if you need them pluginBabelOptions: { - include: Array // default: [/node_modules\/(react-native|@react-native)/], - exclude: Array // default: undefined + include: Array, // default: [/node_modules\/(react-native|@react-native)/] + exclude: Array, // default: undefined presets: Array, plugins: Array, presetReact?: { @@ -187,7 +187,7 @@ Storybook for React Native Web is a [framework](../../contribute/framework.mdx) }, }, }, - }; + }, // ... rest of config }