## Description - Update Storybook and related dependencies - Delete the stories for old widget components - Rewrite stories for new widgets(mdx to tsx) Note: local chromatic doesn't work because of this https://github.com/storybookjs/storybook/issues/22531 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced new component stories across various packages to enhance design system documentation and user experience. - **Documentation** - Updated `.gitignore` files to optimize version control settings for Storybook and build logs. - **Refactor** - Modified UI element positioning in Storybook theming for improved layout management. - **Style** - Adjusted CSS properties for the `Select` component to ensure better visual presentation. - **Chores** - Updated dependencies and scripts in package configurations to maintain up-to-date development tools. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
24 lines
629 B
JavaScript
24 lines
629 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import svgr from "vite-plugin-svgr";
|
|
import postcssNesting from "postcss-nesting";
|
|
import postcssImport from "postcss-import";
|
|
import postcssAtRulesVariables from "postcss-at-rules-variables";
|
|
import postcssEach from "postcss-each";
|
|
import postcssModulesValues from "postcss-modules-values";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), svgr()],
|
|
css: {
|
|
postcss: {
|
|
plugins: [
|
|
postcssNesting,
|
|
postcssImport,
|
|
postcssAtRulesVariables,
|
|
postcssEach,
|
|
postcssModulesValues,
|
|
],
|
|
},
|
|
},
|
|
});
|