mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
feat: add docker compose file for development (#1769)
* Add support to fetch devProxyServer from environment * Add docker compose file for developer --------- Co-authored-by: Athurg Feng <athurg@gooth.org>
This commit is contained in:
@@ -2,7 +2,11 @@ import { resolve } from "path";
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react-swc";
|
||||
|
||||
const devProxyServer = "http://localhost:8081/";
|
||||
let devProxyServer = "http://localhost:8081/";
|
||||
if (process.env.DEV_PROXY_SERVER && process.env.DEV_PROXY_SERVER.length > 0) {
|
||||
console.log("Use devProxyServer from environment: ", process.env.DEV_PROXY_SERVER);
|
||||
devProxyServer = process.env.DEV_PROXY_SERVER;
|
||||
}
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
|
Reference in New Issue
Block a user