first commit
This commit is contained in:
commit
b47f825d54
83 changed files with 10016 additions and 0 deletions
19
frontend/vite.config.ts
Normal file
19
frontend/vite.config.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import tailwindcss from "@tailwindcss/vite";
|
||||
import vue from "@vitejs/plugin-vue";
|
||||
import { resolve } from "path";
|
||||
import { defineConfig } from "vite";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue(), tailwindcss()],
|
||||
resolve: {
|
||||
alias: {
|
||||
"@": resolve(__dirname, "src"),
|
||||
},
|
||||
},
|
||||
server: {
|
||||
port: 5174,
|
||||
proxy: {
|
||||
"/api": process.env.API_URL ?? "http://localhost:9000",
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue