SQL代码生成器
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

vite.config.ts 208 B

2 年前
1234567891011
  1. import { defineConfig } from "vite";
  2. import vue from "@vitejs/plugin-vue";
  3. // https://vitejs.dev/config/
  4. export default defineConfig({
  5. server: {
  6. open: true,
  7. hmr: true,
  8. },
  9. plugins: [vue()],
  10. });