Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/get-started/frameworks/react-native-web-vite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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<string|RegExp> // default: [/node_modules\/(react-native|@react-native)/],
exclude: Array<string|RegExp> // default: undefined
include: Array<string|RegExp>, // default: [/node_modules\/(react-native|@react-native)/]
exclude: Array<string|RegExp>, // default: undefined
presets: Array<string|[string, any]>,
plugins: Array<string|[string, any]>,
presetReact?: {
Expand Down Expand Up @@ -187,7 +187,7 @@ Storybook for React Native Web is a [framework](../../contribute/framework.mdx)
},
},
},
};
},

// ... rest of config
}
Expand Down