Current section

Files

Jump to
phoenix priv static brunch brunch-config.js
Raw

priv/static/brunch/brunch-config.js

exports.config = {
// See http://brunch.io/#documentation for docs.
files: {
javascripts: {
joinTo: 'js/app.js'
},
stylesheets: {
joinTo: 'css/app.css'
},
templates: {
joinTo: 'js/app.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: {
ES6to5: {
// Do not use ES6 compiler in vendor code
ignore: [/^(vendor)/]
}
}
};