aboutsummaryrefslogtreecommitdiff
path: root/vite.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vite.config.ts')
-rw-r--r--vite.config.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/vite.config.ts b/vite.config.ts
new file mode 100644
index 0000000..895d557
--- /dev/null
+++ b/vite.config.ts
@@ -0,0 +1,17 @@
+import { defineConfig } from 'vite'
+import vue from '@vitejs/plugin-vue'
+
+// https://vitejs.dev/config/
+export default defineConfig({
+ plugins: [vue()],
+ base: '/',
+ server: {
+ proxy: {'/data': 'http://localhost:8000', '/hist_data': 'http://localhost:8000'},
+ watch: {
+ ignored: ['**/backend', '**/public'],
+ },
+ },
+ build: {
+ sourcemap: true,
+ },
+})