I'm currently working on an ember build that incorporates autoprefixer. My issue arises from the fact that the output location for 'assets/application-name.css' has shifted from its normal path to 'app/styles/app.css', and I would like it to go back to 'assets/application-name.css'.
Even after attempting to include the outputPaths option, no changes seem to be taking effect.
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var Funnel = require('broccoli-funnel');
var autoprefixer = require('autoprefixer');
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
outputPaths: {
app: {
css: {
'app': 'assets/application-name.css'
}
}
},
postcssOptions: {
compile: {
enabled: false
},
filter: {
enabled: true,
plugins: [
{
module: autoprefixer,
options: {
browsers: ['last 2 version']
}
}
]
}
}
});
...