When I try to activate project config I get the following error in craft’s control panel:
Your `project.yaml` file was created for different versions of Craft and/or plugins than what’s currently installed.
Craft CMS is installed with schema version of 3.4.10 while was expected.
Try running `composer install` from your terminal to resolve.
Neccessary steps to reproduce this error
install craft-vue as described in this repo’s readme.
set 'useProjectConfigFile' => true in config/general.php.
Solution: there is an existing /config/project.yaml file that needs to be removed before enabling project config (Thanks @chasegiunta for pointing this out).
When I try to activate project config I get the following error in craft’s control panel:
Neccessary steps to reproduce this error
'useProjectConfigFile' => true
in config/general.php.Craft support recommends
composer install
./craft migrate/all
./craft project-config/sync
However, this yelds the same error.