Files
Mangarr/config/routes.yaml
ext.jeremy.guillot@maxicoffee.domains ed86c9074d
Some checks failed
Deploy / deploy (push) Failing after 3m17s
fix: remove unsupported priority key from YAML route definition
Symfony's YAML route loader does not support the priority key (only PHP config does).
Relying on vue_app being defined first in routes.yaml to ensure it is matched
before legacy controller routes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-11 21:13:37 +01:00

15 lines
340 B
YAML

vue_app:
path: /{req}
controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController
defaults:
template: 'vue/index.html.twig'
req: ''
requirements:
req: "^(?!api/|legacy).*"
controllers:
resource:
path: ../src/Controller/
namespace: App\Controller
type: attribute