- Issue created by @agentrickard
storybook.md docs have nginx config, but not apache.
Add to documentation
### apache
In order to get this set up correctly we must first edit this file: `.ddev/apache/apache-site.conf`.
1. Inside each `<VirtualHost>` directive, add this element:
```
# Allow file resources to load in storybook.
<IfModule mod_headers.c>
<Files ~ "\.(png|jpg|jpeg|gif|ico|svg|woff|woff2|css|js)$">
Header set Access-Control-Allow-Origin "*"
</Files>
</IfModule>
```
Active
2.0
Documentation