-
Notifications
You must be signed in to change notification settings - Fork 1
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
Prefix on URL links in 'brunch' #2
Comments
This actually appears to have been a minor issue with accidentally having some hardcoded links to (e.g.) "../img/foo.jpg" when actually we were already at the root level (so it resolved to "img/foo.jpg" when running out of / and worked fine, but when we put the site under "/bar/" it ended up resolving to "/img/foo.jpg" instead of "/bar/img/foo.jpg". Chaplin seems to be working correctly when installed under a subdirectory, so we should be able to accomplish this by keeping everything relative as Nick suggests. |
Fixed by 2eecb48 |
Actually, no, the static assets are fixed but dynamic templates are not running on pages when installed in other than '/' |
Fixed in 59ff88c Now need to set baseUri in settings.coffee |
Brunch currently assumes it's running in a web root of '/'.
The text was updated successfully, but these errors were encountered: