refactor: convert coding-agent example from JSX to SFC templates

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yunfei He
2026-05-27 14:55:12 +08:00
parent 72cf46987c
commit 162e022b7f
10 changed files with 196 additions and 242 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
import { defineConfig } from "vite";
import vueJsx from "@vitejs/plugin-vue-jsx";
import vue from "@vitejs/plugin-vue";
import { fileURLToPath } from "node:url";
const here = fileURLToPath(new URL(".", import.meta.url));
export default defineConfig({
plugins: [vueJsx()],
plugins: [vue()],
build: {
target: "node22",
outDir: "dist",