storybook/docs/snippets/common/storybook-vite-builder-svelte-plugin.js.mdx
2022-05-05 23:37:51 +01:00

24 lines
554 B
Plaintext

```js
// .storybook/main.js|ts
const preprocess = require('svelte-preprocess');
module.exports = {
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
core: {
builder: '@storybook/builder-vite',
},
async viteFinal(config, { configType }) {
// Customize the Vite config here
return config;
},
svelteOptions: {
preprocess: preprocess({
typescript: true,
postcss: true,
sourceMap: true,
}),
},
};
```