feat(shiki-vue-wrapper): add Shiki code highlighting component with Vue integration

This commit is contained in:
2026-05-20 19:16:55 +00:00
parent d62855853b
commit 6f417ba514
14 changed files with 1662 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import tailwind from '@tailwindcss/vite';
export default defineConfig({
plugins: [vue(), tailwind()],
});