Files
antigravity-skills-reference/apps/web-app/vite.config.ts
sck_0 45844de534 refactor: reorganize repo docs and tooling layout
Consolidate the repository into clearer apps, tools, and layered docs areas so contributors can navigate and maintain it more reliably. Align validation, metadata sync, and CI around the same canonical workflow to reduce drift across local checks and GitHub Actions.
2026-03-06 15:01:38 +01:00

9 lines
249 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import refreshSkillsPlugin from './refresh-skills-plugin.js';
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), refreshSkillsPlugin()],
});