Storybook v7.0.4
Does Esbuild have analogue of Webpack's watchOptions and poll? I run Storybook in Vagrant and it doesn't update list of sidebar stories after editing so I have to restart dev server every time I add new stories. For Webpack I add these options:
config.watchOptions = {
aggregateTimeout: 600,
poll: 5000,
ignored: /node_modules/,
}
but managerWebpack is removed in v7. I couldn't find anything in documentation, GitHub, here.