- Add PentatrionViteBundle to bundles.php (Flex recipe didn't auto-register) - Create pentatrion_vite.yaml config - Share vendor named volume with node container (needed for file: npm deps) - Add vite-plugin-symfony to package.json devDependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
1.0 KiB
PHP
19 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
|
|
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
Symfony\UX\React\ReactBundle::class => ['all' => true],
|
|
Pentatrion\ViteBundle\PentatrionViteBundle::class => ['all' => true],
|
|
];
|