mirror of
				https://github.com/usememos/memos.git
				synced 2025-10-31 16:59:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineConfig } from "vite";
 | |
| import react from "@vitejs/plugin-react";
 | |
| 
 | |
| // https://vitejs.dev/config/
 | |
| export default defineConfig({
 | |
|   plugins: [react()],
 | |
|   server: {
 | |
|     cors: true,
 | |
|     proxy: {
 | |
|       "/api": {
 | |
|         target: "http://localhost:8080/",
 | |
|         changeOrigin: true,
 | |
|       },
 | |
|       "/h/": {
 | |
|         target: "http://localhost:8080/",
 | |
|         changeOrigin: true,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| });
 |