kun-galgame-vue/vite.config.ts

8 lines
160 B
TypeScript
Raw Normal View History

2023-04-18 08:04:47 +00:00
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
2023-04-14 13:58:13 +00:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
2023-04-18 08:04:47 +00:00
});