LittleSheep
6d056b6e1d
All checks were successful
release-nightly / build-docker (push) Successful in 3m19s
14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import { defineConfig } from "vite";
|
|
import solid from "vite-plugin-solid";
|
|
import devtools from "solid-devtools/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [devtools({ autoname: true }), solid()],
|
|
server: {
|
|
proxy: {
|
|
"/api": "http://localhost:8444",
|
|
"/.well-known": "http://localhost:8444"
|
|
}
|
|
}
|
|
});
|