style(web): 保持 vite.config.ts 单引号风格

This commit is contained in:
2026-08-17 12:11:30 +08:00
parent 7128a8c041
commit e73bd834a1

View File

@ -1,17 +1,17 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { fileURLToPath } from "node:url";
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { fileURLToPath } from 'node:url'
// Backend default port (cmd/webui4frpc -addr). Override with VITE_PROXY_TARGET.
const backend = process.env.VITE_PROXY_TARGET || "http://127.0.0.1:7500";
const backend = process.env.VITE_PROXY_TARGET || 'http://127.0.0.1:7500'
// The frontend is served by the Go binary at / (embedded dist), and talks to
// the same origin via /api/manager/*.
export default defineConfig({
plugins: [vue()],
base: "/",
base: '/',
resolve: {
alias: { "@": fileURLToPath(new URL("./src", import.meta.url)) },
alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) },
},
css: {
preprocessorOptions: {
@ -21,11 +21,11 @@ export default defineConfig({
},
},
build: {
outDir: "dist",
outDir: 'dist',
},
server: {
proxy: {
"/api": backend,
'/api': backend,
},
},
});
})