Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
import tailwindcss from "@tailwindcss/vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue(), tailwindcss()],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 5174,
|
|
strictPort: true,
|
|
proxy: {
|
|
"/v1": {
|
|
target: "http://localhost:18080",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|