create form and modal components, update datatable persistant filtering

This commit is contained in:
Casey 2025-10-30 03:21:41 -05:00
parent b70e08026d
commit 8d9bb81fe2
23 changed files with 3502 additions and 74 deletions

View file

@ -8,6 +8,12 @@ export default defineConfig(({ command }) => {
return {
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
base: isDev ? "/" : "/assets/custom_ui/dist/",
build: {
@ -22,6 +28,13 @@ export default defineConfig(({ command }) => {
},
server: {
proxy: {
'/zippopotam': {
target: 'https://api.zippopotam.us',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/zippopotam/, ''),
},
},
port: 5173,
strictPort: true,
},