Skip to content

Commit

Permalink
Merge pull request #33 from 8845musign/form-layout-examples
Browse files Browse the repository at this point in the history
Add Layouts Category & Form Layouts Page
  • Loading branch information
takanorip authored Mar 21, 2024
2 parents eb92ec8 + 1d2ea40 commit 8f84310
Show file tree
Hide file tree
Showing 51 changed files with 16,095 additions and 8,549 deletions.
8 changes: 8 additions & 0 deletions .astro/icon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Automatically generated by astro-icon
// 49dc50a938b693410b8c5d2a2bb1644eae3a3ac395409a0b7ae6e72f95b979be

declare module 'virtual:astro-icon' {
export type Icon =
| "icon-arrow-right"
| "icon-tri-down";
}
16 changes: 14 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import mdx from "@astrojs/mdx";
import react from "@astrojs/react";
import { defineConfig } from 'astro/config';
import icon from "astro-icon";
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
import rehypeSlug from 'rehype-slug';
import { transformerNotationHighlight, transformerNotationWordHighlight, transformerNotationDiff } from 'shikiji-transformers'

// https://astro.build/config
export default defineConfig({
Expand All @@ -27,6 +29,16 @@ export default defineConfig({
}
}],
]
})],
}), icon()],
site: 'https://ubie-vitals.github.io',
});
vite: {
ssr: {
noExternal: ['@ubie/ubie-icons', '@ubie/ubie-ui']
}
},
markdown: {
shikiConfig: {
transformers: [transformerNotationWordHighlight(), transformerNotationHighlight(), transformerNotationDiff()]
}
}
});
Loading

0 comments on commit 8f84310

Please sign in to comment.