Template Tips
From TYPO3Wiki
<< Back to Administrators page
This page is about ...
Speed up Page Access (Typo3 3.8.1 and earlier)
There are a few ways to speed up your page load time.
Pretend your index without actual content is 5kb, which contains all styles and javascript which all pages on your site have in common. If you were to move that common data outside your main page, you could drop as much as 70% of that 5kb. Move those files to an external file!
Add the following to your template:
config.inlineStyle2TempFile = 1 config.removeDefaultJS = external
This will move a lot of javascript and styles to external files so end users only download it once, instead of downloading it every page!
These lines are already set by default in Typo3 4.0 and higher)
Jfrasier@fscproductions.net
One thing that has been annoying me about typo3, is the fact that even though I use external CSS files, it still shows all of the CSS in the page source. Would the above solution fix that, or if there is another solution, could you email it to me or add it below?
Thanks J Frasier
