Commit 791e653c authored by dechen lin's avatar dechen lin
Browse files

feat: add web project

parent 9d689790
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": {
// target: "https://staging.openxlab.org.cn/datasets",
target: "http://10.6.16.161:5559",
changeOrigin: true,
},
},
},
css: {
modules: {
localsConvention: "camelCaseOnly", // transfer kebab-case to camelCase
scopeBehaviour: "local",
generateScopedName: "[name]__[local]___[hash:base64:5]",
},
},
publicDir: "public",
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment