2024-01-27 17:07:38 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import solid from "vite-plugin-solid";
|
|
|
|
import devtools from "solid-devtools/vite";
|
2024-01-27 16:05:19 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2024-01-27 17:07:38 +00:00
|
|
|
plugins: [devtools({ autoname: true }), solid()],
|
2024-01-27 16:05:19 +00:00
|
|
|
server: {
|
|
|
|
proxy: {
|
2024-01-29 08:11:59 +00:00
|
|
|
"/api": "http://localhost:8444",
|
|
|
|
"/.well-known": "http://localhost:8444"
|
2024-01-27 16:05:19 +00:00
|
|
|
}
|
|
|
|
}
|
2024-01-27 17:07:38 +00:00
|
|
|
});
|