Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

THC 764 create tab components #194

Merged
merged 19 commits into from
Sep 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dist/

# dependencies
node_modules/
.npmrc

# logs
npm-debug.log*
Expand Down
13 changes: 2 additions & 11 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,11 @@ import {
defListHastHandlers,
} from "remark-definition-list";

import {
tabsAutoImport,
tabNameAutoImport,
tabContentAutoImport,
astroTabs,
} from "./integrations/astro-tabs";

// https://astro.build/config
export default defineConfig({
integrations: [
AutoImport({
imports: [
tabsAutoImport,
tabNameAutoImport,
tabContentAutoImport,
"@components/Callout.astro",
"@components/Accordion.astro",
"@components/ListTable.astro",
Expand All @@ -33,6 +23,8 @@ export default defineConfig({
"@components/Tile.astro",
"@components/GuiLabel.astro",
"@components/MenuSelection.astro",
"@components/Tabs.astro",
"@components/Tab.astro",
"@components/Abbr.astro",
"@components/Badge.astro",
],
Expand All @@ -43,7 +35,6 @@ export default defineConfig({
react(),
mdx(),
tailwind(),
astroTabs(),
sitemap(),
],
site: `https://dev-docs-nine.vercel.app/`,
Expand Down
121 changes: 0 additions & 121 deletions integrations/astro-tabs.ts

This file was deleted.

33 changes: 0 additions & 33 deletions integrations/utils/makeComponentNode.ts

This file was deleted.

Loading