adding backup and data perstance accross devices

This commit is contained in:
nmemmert
2026-05-28 08:32:33 -04:00
parent 48b3790cd2
commit d8da3744ca
9 changed files with 479 additions and 66 deletions
+8 -1
View File
@@ -6,6 +6,13 @@ export default defineConfig({
server: {
host: true,
allowedHosts: ['study.necloud.us', 'localhost', 'study.versebyversewithnate.us'],
// Proxy /api calls to the Express backend during development
proxy: {
'/api': {
target: 'http://localhost:3001',
changeOrigin: true,
},
},
},
test: {
environment: 'jsdom',
@@ -17,4 +24,4 @@ export default defineConfig({
include: ['src/**/*.{js,jsx}'],
},
},
});
});