mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
24 lines
554 B
Plaintext
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,
|
|
}),
|
|
},
|
|
};
|
|
``` |