aboutsummaryrefslogtreecommitdiff
path: root/vite.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vite.config.js')
-rw-r--r--vite.config.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/vite.config.js b/vite.config.js
index e1200f9..7b02d3f 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -3,5 +3,10 @@ import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
+ server: {
+ proxy: {
+ '/tolnode': 'http://localhost:8000',
+ }
+ },
//server: {open: true} //open browser when dev server starts
})