user1066132
user1066132

Reputation: 31

Using Mean.io - How to disable JS files aggregation

During development I'd like to have original (not aggregated) .js files loaded.

Mean.io documentation says:

All javascript within public is automatically aggregated with the exception of files in assets.

This is my file structure:

public            
  --- assets        # Javascript/Css/Images (not aggregated)
  --- controllers
  --- config
  --- services
  --- views

How to disable aggregation for all .js files in public?

Upvotes: 3

Views: 289

Answers (1)

venkat
venkat

Reputation: 2310

I am using the version 0.6.16. You can set the

aggregate:false

in the config/env/.js file to disable aggregation of js and css files

Upvotes: 1

Related Questions