2025-03-06 15:33:21 +01:00

50 lines
1.4 KiB
JavaScript

const path = require('path');
const namedBlockPolyfill = require('ember-named-blocks-polyfill/lib/named-blocks-polyfill-plugin');
module.exports = {
emberOptions: {
polyfills: [namedBlockPolyfill],
},
stories: ['../stories/*.stories.js'],
logLevel: 'debug',
addons: [
'@storybook/addon-a11y',
'@storybook/addon-storysource',
'@storybook/addon-docs',
'@storybook/addon-controls',
'@storybook/addon-links',
'@storybook/addon-viewport',
'@storybook/addon-backgrounds',
'@storybook/addon-highlight',
],
webpackFinal: async (config) => {
config.module.rules.push({
test: [/\.stories\.js$/, /index\.js$/],
use: require.resolve('@storybook/source-loader'),
include: [path.resolve(__dirname, '../')],
enforce: 'pre',
});
// eslint-disable-next-line no-param-reassign
config.resolve.fallback = {
fs: false,
child_process: false,
zlib: require.resolve('browserify-zlib'),
vm: require.resolve('vm-browserify'),
stream: require.resolve('stream-browserify'),
os: require.resolve('os-browserify/browser'),
...config.resolve.fallback,
};
return config;
},
core: {
channelOptions: { allowFunction: false, maxDepth: 10 },
disableTelemetry: true,
},
staticDirs: ['../ember-output'],
features: {
buildStoriesJson: false,
},
framework: { name: '@storybook/ember' },
};