feat: add Vue.js frontend with JWT auth, Pinia store, and Docker

This commit is contained in:
Cipher Vance
2025-11-20 19:24:43 -06:00
parent 580a029742
commit 1f2eb1e836
16 changed files with 1623 additions and 75 deletions

View File

@@ -1,4 +1,15 @@
const { defineConfig } = require('@vue/cli-service')
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig({
transpileDependencies: true
})
transpileDependencies: true,
productionSourceMap: false,
devServer: {
port: 3000,
proxy: {
'/api': {
target: process.env.VUE_APP_API_URL || 'http://127.0.0.1:5000',
changeOrigin: true,
},
},
},
});