Skip to content

Commit

Permalink
Disable preprocessing by default
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Mar 15, 2017
1 parent 61aed72 commit e84ad42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export const useDisplayName = (state) => getOption(state, 'displayName')
export const useSSR = (state) => getOption(state, 'ssr')
export const useFileName = (state) =>getOption(state, 'fileName')
export const useMinify = (state) => getOption(state, 'minify')
export const useCSSPreprocessor = (state) => getOption(state, 'preprocess')
export const useCSSPreprocessor = (state) => getOption(state, 'preprocess', false) // EXPERIMENTAL
export const useTranspileTemplateLiterals = (state) => getOption(state, 'transpileTemplateLiterals')

0 comments on commit e84ad42

Please sign in to comment.