- Issue created by @mrogers
- πΊπ¦Ukraine NightAr Kharkiv
Hello, this is issue not of this module. This just drush working.
You can modify it by 2 solutions:
- When you use the drush command
drush storybook:generate-all-stories
, add global parramaeter for setting you uri(--uri=SITE_URI
). it should be like:
drush storybook:generate-all-stories --uri=https:\\your_project.test
- Second solution is set you the URI only once. In this case, you should create the drush settings file in your current Drupal root folder: drush/drush.yml. For example, in my case it will be /home/snight/projects/your_project/drush/drush.yml where /home/snight/projects/your_project is your_project root folder. For this file you should add options for your uri:
options: uri: 'https://test_project.test'
In some cases its need to run clear cache command:
drush cc drush
- When you use the drush command