storybook/docs/_snippets/storybook-preset-full-config-object.md
2024-06-13 17:53:08 +01:00

326 B

export default {
  managerWebpack: async (config, options) => {
    // Update config here
    return config;
  },
  webpackFinal: async (config, options) => {
    return config;
  },
  babel: async (config, options) => {
    return config;
  },
};