H4Mm3r
H4Mm3r
> I had to do the following to get this working: > > Add the following to composer.json: `"conflict": { "doctrine/orm": "^2.10" }` Then: `composer update` Then: `composer req bitbag/cms-plugin`...
This is exactly on what it fails. > > Executing script cache:clear [KO] > [KO] > Script cache:clear returned with error code 255 > !! PHP Warning: include_once(/opt/sylius/vendor/doctrine/orm/lib/Doctrine/ORM/Internal/SQLResultCasing.php): Failed to...
Seems that replacing the whole content of `config/packages/webpack_encore.yaml` with > webpack_encore: > output_path: '%kernel.project_dir%/public/build' > builds: > bootstrapTheme: '%kernel.project_dir%/public/bootstrap-theme' is fixing the behaviour, but compilation fails : `Error: Node Sass...
Fixed using sass instead of node-sass : > yarn remove node-sass > yarn add sass Is it a solution ?
Seems that replacing the whole content of `config/packages/webpack_encore.yaml` with > webpack_encore: > output_path: '%kernel.project_dir%/public/build' > builds: > bootstrapTheme: '%kernel.project_dir%/public/bootstrap-theme' is fixing the behaviour, you can't just adjust needed lines. Am...