aboutsummaryrefslogtreecommitdiff
path: root/vite.config.js
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-07-09 03:20:53 +1000
committerTerry Truong <terry06890@gmail.com>2022-07-09 04:36:52 +1000
commit5569c8191ae02f109254282b5943e3ed40032018 (patch)
tree0ec5c2f6176c470aaeaa41be9bfbb0825554b764 /vite.config.js
parent347f5127929b17671c75734af5a374ec4f39b5ae (diff)
Replace CGI script with WSGI script and dev server
Diffstat (limited to 'vite.config.js')
-rw-r--r--vite.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/vite.config.js b/vite.config.js
index ebcdcd3..900daa2 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -6,7 +6,7 @@ export default defineConfig({
plugins: [vue()],
server: {
proxy: {
- '/cgi-bin/data.py': 'http://localhost:8000'
+ '/data': 'http://localhost:8000'
},
watch: {
ignored: ['**/backend', '**/public']