Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for disabling autoprefixer #7

Merged
merged 1 commit into from Jan 31, 2015
Merged

Conversation

kimroen
Copy link
Owner

@kimroen kimroen commented Jan 31, 2015

Fixes #6

You can now disable autoprefixer by passing in enabled: false to its options. Autoprefixer is disabled by default.

For instance to disable in development, you could do something like this:

// Brocfile.js
var app = new EmberApp({
  autoprefixer: {
    enabled: process.env.EMBER_ENV == 'production' ? true : false
  }
});

kimroen added a commit that referenced this pull request Jan 31, 2015
Add support for disabling autoprefixer
@kimroen kimroen merged commit f71a342 into master Jan 31, 2015
@kimroen kimroen deleted the adding-disabling branch January 31, 2015 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Is there any way to disable this in development?
1 participant