A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at main 24 lines 787 B view raw
1const { getDefaultConfig } = require("expo/metro-config"); 2const { withNativeWind } = require("nativewind/metro"); 3const path = require("path"); 4const withStorybook = require("@storybook/react-native/metro/withStorybook"); 5 6const config = getDefaultConfig(__dirname); 7 8module.exports = withStorybook( 9 withNativeWind(config, { input: "./global.css" }), 10 { 11 // Set to false to remove storybook specific options 12 // you can also use a env variable to set this 13 enabled: true, 14 // Path to your storybook config 15 configPath: path.resolve(__dirname, "./.storybook"), 16 17 // Optional websockets configuration 18 // Starts a websocket server on the specified port and host on metro start 19 // websockets: { 20 // port: 7007, 21 // host: 'localhost', 22 // }, 23 } 24);