docs/boilerplate/plugins/Plugins.md
plugins Directory in Ignite AppsThe plugins directory is a dedicated space within the Ignite boilerplate for managing Expo Config Plugins. These plugins are used to customize the native configuration of your app without altering the native code directly.
To add a custom plugin:
plugins, define your plugin in a TypeScript file, exporting a function that modifies the ExpoConfig.app.config.ts, import your plugin and add it to the plugins array.Example:
// In app.config.ts
plugins: [...existingPlugins, require("./plugins/yourCustomPlugin").yourCustomPlugin]
plugins and add them to app.config.ts.For detailed information on creating and using config plugins, refer to Expo's Config Plugins documentation.