We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
/static/css/leostyle.css has TT in it:
e.g:
background: transparent url([% combust.static_url("/images/arrow_grey.gif") %]) no-repeat center right
Either the TT should be removed or CSS files need to be served through TT when developing.
The text was updated successfully, but these errors were encountered:
(from our thread from May 2016)
OPTION A:
(assumption, *.localhost points to 127.0.0.1)
[static] servername = static.localhost
[www] servername = www.localhost static_base = //static.localhost:8230/
(8230 should match up with whatever the port setting is earlier in the file.)
OPTION B:
--- a/apache/conf/sites/www.tmpl +++ b/apache/conf/sites/www.tmpl @@ -30,4 +30,9 @@ Allow from all </Directory> + <Location /static/css/> + SetHandler perl-script + PerlHandler PerlOrg::Control::CSS + </Location> + </VirtualHost>
COMMENTARY: Option A is mirrors how production works. Option B would need to be added to all vhosts that use static files.
Sorry, something went wrong.
No branches or pull requests
/static/css/leostyle.css has TT in it:
e.g:
background: transparent url([% combust.static_url("/images/arrow_grey.gif") %]) no-repeat center right
Either the TT should be removed or CSS files need to be served through TT when developing.
The text was updated successfully, but these errors were encountered: