美文网首页
antd相关

antd相关

作者: LElysion | 来源:发表于2017-03-16 14:28 被阅读0次

    npm install antd --save 后无效果
    可以尝试为webpack.config.js的module段添加以下代码

    {
              test: /\.(js|jsx)$/,
              exclude:/node_modules/,
              loader: 'babel',
              query: {
                presets: ['react', 'es2015', 'stage-0'],
                plugins: [
                  ['import',{
                    libraryName: 'antd',
                    style: 'css'
                  }]
                ]
              }
            },
    

    相关文章

      网友评论

          本文标题:antd相关

          本文链接:https://www.haomeiwen.com/subject/bwcjnttx.html