Apply hexagonal architecture and clean code principles
This commit is contained in:
15
chat-web-client/vite.config.js
Normal file
15
chat-web-client/vite.config.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import {defineConfig} from "vite"
|
||||
import vue from "@vitejs/plugin-vue"
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
server: {
|
||||
port: 3000,
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: "http://localhost:8080",
|
||||
changeOrigin: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user