Current section

Files

Jump to
phoenix brunch-config.js
Raw

brunch-config.js

exports.config = {
sourceMaps: false,
production: true,
modules: {
definition: false,
wrapper: function(path, code){
return "if(typeof(exports) === \"undefined\" && !window.Phoenix){ window.Phoenix = {}; var exports = window.Phoenix; }\n\n(function(){\n" + code + "\n})();\n";
}
},
files: {
javascripts: {
joinTo: 'phoenix.js'
},
},
// Phoenix paths configuration
paths: {
// Which directories to watch
watched: ["web/static", "test/static"],
// Where to compile files to
public: "priv/static"
},
// Configure your plugins
plugins: {
babel: {
// Do not use ES6 compiler in vendor code
ignore: [/^(web\/static\/vendor)/]
}
}
};