2017-05-04 7 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であるので、同様にWebPACKの中で構成された

// "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' 
}, 

私が使用しているインラインスタイル(私が知っている)、彼らの自動車が前置されていますか?

これらを設定することはできますか?例えばラジウムを使う。

答えて

関連する問題