-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
public_folder
without path
#289
Comments
Is the |
Global option. |
You cannot use a relative path ( The double slash with |
And can't there be some way to store the value without a leading slash? |
A relative path with collection-level Otherwise, the path is always root relative, starting with |
When I use |
The issue with |
With
media_folder: assets/img
public_folder: /foo
image: /foo/example.jpg
image: /foo/example.jpg
✅public_folder: /foo/
image: /foo/example.jpg
image: /foo/example.jpg
✅public_folder: /
image: /example.jpg
image: //example.jpg
❌public_folder: '.'
.image: example.jpg
⬅️ I would especially like thisimage: /./example.jpg
❌public_folder: ''
.image: example.jpg
⬅️ I would especially like thisimage: /assets/img/example.jpg
❌The text was updated successfully, but these errors were encountered: