Add sample for vite + vue

This commit is contained in:
Dennis Chen 2025-09-17 14:30:28 +08:00
parent 1b33d5dced
commit 668420adc0
11 changed files with 1268 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()]
});