2017-05-04 17 views
0

반응적이고 물질적 인 UI로 앱을 만들고 있습니다. 그것은 또한이 말한다인라인 스타일에 자동 접두사가 적용됩니까?

postcss: function() { 
    return [ 
     autoprefixer({ 
     browsers: [ 
      '>1%', 
      'last 4 versions', 
      'Firefox ESR', 
      'not ie < 9', // React doesn't support IE8 anyway 
     ] 
     }), 
    ]; 
}, 

: Autoprefixer가 package.json에 있으며과 같이 웹팩 구성

// "postcss" loader applies autoprefixer to our CSS. 
// "css" loader resolves paths in CSS and adds assets as dependencies. 
// "style" loader turns CSS into JS modules that inject <style> tags. 
// In production, we use a plugin to extract that CSS to a file, but 
// in development "style" loader enables hot editing of CSS. 
{ 
    test: /\.css$/, 
    loader: 'style!css?importLoaders=1!postcss' 
}, 

내가 사용 인라인 스타일 (내가 아는), 그들은 자동 접두사?

구성 할 수 있습니까? 예를 들어 라듐 사용.

답변