Advertisement
Guest User

Untitled

a guest
Aug 17th, 2012
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ({
  2.     appDir: "./",
  3.     baseUrl: "./",
  4.     dir: './prod',
  5.     modules: [
  6.         {
  7.             name: "js/start"
  8.         },
  9.         {
  10.             name: 'js/js-animation'
  11.         }
  12.     ],
  13.  
  14.     optimize : "none", // | "uglify" or "none"
  15.  
  16.     uglify: {
  17.         toplevel: true,
  18.         ascii_only: true,
  19.         beautify: true,
  20.         max_line_length: 1000,
  21.  
  22.         //Custom value supported by r.js but done differently
  23.         //in uglifyjs directly:
  24.         //Skip the processor.ast_mangle() part of the uglify call (r.js 2.0.5+)
  25.         no_mangle: true
  26.     },
  27. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement