Add deployment map, Nixpacks, ESLint, Storybook, and GraphQL codegen setup

This commit is contained in:
Ruslan Bakiev
2026-02-19 18:56:36 +07:00
parent fc64a51974
commit c1c6616994
13 changed files with 18833 additions and 62 deletions

View File

@@ -0,0 +1,12 @@
import type { StorybookConfig } from "@storybook/vue3-vite";
const config: StorybookConfig = {
stories: ["../components/**/*.stories.@(ts|tsx)"],
addons: ["@storybook/addon-essentials", "@storybook/addon-interactions"],
framework: {
name: "@storybook/vue3-vite",
options: {},
},
};
export default config;