how can I compress (minify) my JavaScript and CSS files dynamically in Typo3?

Thanks

link|improve this question

68% accept rate
feedback

3 Answers

up vote 4 down vote accepted

I suggest using the scriptmerger extension. It automatizes this task for you.

link|improve this answer
feedback

You could use Typoscript (since 4.6):

config {
  concatenateJs = 1
  concatenateCss = 1

  compressJs = 1
  compressCss = 1
}

page {
  includeJS {
    myFile1 = fileadmin/js_file1.js

    myFile2 = fileadmin/js_file2.js
    myFile2.excludeFromConcatenation = 1
  }

  includeCSS {
    myFile1 = fileadmin/css_file1.css

    myFile2 = fileadmin/css_file2.css
    myFile2.disableCompression = 1
  }
}
link|improve this answer
feedback

You could always do them manually using services like

http://www.minifycss.com/ & http://www.minifyjs.com/

link|improve this answer
Thanks - but I need a dynamic process for Typo3. – koalabruder Feb 14 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.