Add asset import/export and local dev server setup
CI/CD Pipeline / deploy (push) Successful in 38s
CI/CD Pipeline / promote_stable (push) Successful in 2s

- Configure Vite dev server with localhost binding and public asset proxy
- Add npm scripts for concurrent Laravel/Vite development (dev:local, dev:test)
- Implement asset import/export in ACP via ZIP file upload/download
- Create AssetController for asset management endpoints
- Add asset management UI tab in admin panel
This commit is contained in:
2026-05-16 16:33:22 +02:00
parent a2fe31925f
commit d4d7934c89
7 changed files with 280 additions and 0 deletions
+12
View File
@@ -63,6 +63,18 @@ export default defineConfig({
},
},
server: {
host: '127.0.0.1',
port: 5173,
proxy: {
'/images': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
'/storage': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
},
watch: {
ignored: ['**/storage/framework/views/**'],
},