diff options
Diffstat (limited to 'frontend/vite.config.js')
| -rw-r--r-- | frontend/vite.config.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000..5e738f3 --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,10 @@ +import { defineConfig } from 'vite' + +export default defineConfig({ + + server: { + proxy: { + '/api': 'http://localhost:3000/api', + } + } +})
\ No newline at end of file |
