create form and modal components, update datatable persistant filtering
This commit is contained in:
parent
b70e08026d
commit
8d9bb81fe2
23 changed files with 3502 additions and 74 deletions
|
|
@ -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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue