feat: enhance entity management and reactivity in vue-sync-engine

This commit is contained in:
2026-06-07 03:57:58 +07:00
parent b2d79b97c1
commit aa3148f4e4
17 changed files with 840 additions and 95 deletions
+6 -1
View File
@@ -1,7 +1,12 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import tailwind from '@tailwindcss/vite';
import { shiki } from './src/ShikiCode/vite-plugin-shiki';
export default defineConfig({
plugins: [vue(), tailwind()],
plugins: [
vue(),
tailwind(),
shiki({ theme: 'aurora-x' }),
],
});