Compare commits

..

1 Commits

Author SHA1 Message Date
971b75c823 1
555

Signed-off-by: lxbfYeaa <lxbfyeaa@noreply.git.gogec.cn>
2026-04-13 07:45:43 +00:00
2 changed files with 17 additions and 25 deletions

17
frontEnd/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./index.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>德孝善延伸服务系统</title>
</head>
<body>
<div id="app"></div>
<!-- <script src="https://lf1-cdn-tos.bytegoofy.com/obj/iconpark/icons_29405_22.fc87eeefd2303d03e310328c39223ebb.js"></script> -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>

View File

@@ -1,25 +0,0 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { join } from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": join(__dirname, "/src"),
},
extensions: [".js", ".vue"],
},
server: {
host: true,
},
css: {
preprocessorOptions: {
scss: {
api: "modern",
silenceDeprecations: ["legacy-js-api"],
},
},
},
});