react-cli icon indicating copy to clipboard operation
react-cli copied to clipboard

🎨 webpack4 + React 16 + TypeScript 🌟

Results 1 react-cli issues
Sort by recently updated
recently updated
newest added

发现一个问题, 就是没有办法加载 antd 的样式; ```javascript { test: /\.jsx?$/, use: 'babel-loader?cacheDirectory', exclude: /node_modules/, }, { test: /\.(ts|tsx)?$/, use: 'ts-loader', include: [ paths.PATH_SRC, ], exclude: /node_modules/, }, ``` 这个地方babel-loader 的配置是跟ts-loader 分开的, 然后发现一个问题,...