A template builds a file that can be stored in:
project/output/
or:
project/output/type/
I want to access static files stored in: project/output/static How to make it so it has the right src= in both cases?
src="project/output/static"
won't work locally because locally you need: home/user/project/output
This works for both production and locally but only in 1 case of 2: ../../output/static etc.
Root relative url should work(/output/static) but instead of:
home/user/project/output/static
it points to:
output/static