- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 antd-scss-theme-plugin 在我的 React 项目中使用带有 sass 的 Ant 设计,但我在网上能找到的只是使用 Webpack 的配置。我的项目是用 create-react-app 制作的,我不应该担心 webpack 配置。事实上,我没有任何自己管理的 webpack 配置文件。
我已经使用 npm 安装了 antd 和 node-sass-chokidar 并遵循了配置。所有的工作。我可以导入ant组件并使用它们,我也可以使用sass。使用 watch-css 脚本,我的 css 会自动编译,我可以实时看到修改。
现在我想用我的 sass 文件覆盖 ant design 的较少组件,但正如我所说,我可以在网上找到的唯一帮助以及我知道的唯一包是用于 webpack 项目的。
有没有人使用 antd-scss-theme-plugin 和 create-react-app 或者知道如何处理配置?
这是我的一些配置文件:
.babelrc :
{
"presets": ["env"],
"plugins": ["transform-class-properties", "transform-object-rest-spread"]
}
const { injectBabelPlugin } = require('react-app-rewired')
module.exports = function override(config) {
injectBabelPlugin(
['import', { libraryName: 'antd', libraryDirectory: 'es', style: true }],
config,
)
return config
}
{
"name": "xxx",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.8.0",
"antd-scss-theme-plugin": "^1.0.7",
"connected-react-router": "^4.3.0",
"history": "^4.7.2",
"material-icons-react": "^1.0.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-app-rewired": "^1.5.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-prop-types": "^1.0.4",
"react-scripts": "1.1.4",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-redux": "^2.3.0",
"prettier": "^1.14.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-app-rewired start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-app-rewired build",
"build": "npm-run-all build-css build-js",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint ."
}
}
最佳答案
我的旧项目使用以下配置设置与 SASS、CRA 和 Antd 一起运行。但是如果你去 Antd 官方网站,他们现在有一个更新的 tutorial用于使用 Create React App 配置 Antd。但无论如何,他们解释的是它的用法是less而不是sass,所以要在你的项目中使用sass,你必须将两者结合起来CRA sass 设置和 Antd主题定制使事情发挥作用。
这是我的项目中的一个示例,其中我使用了 less 插件来更新/自定义 Antd 主题。您应该在项目的根目录中创建一个 custom-override.js 文件并添加这些代码行
const { override, fixBabelImports, addLessLoader } = require('customize-cra');
// you can also use craco instead of customize-cra,
// which is now the most updated way in their current docs.
module.exports = override(
fixBabelImports('import', {
libraryName: 'antd',
libraryDirectory: 'es',
style: true,
}),
addLessLoader({
javascriptEnabled: true,
modifyVars: {
'@primary-color': '#6237a0',
'@link-color': '#6237a0',
'@success-color': '#0ea70e',
'@steps-nav-arrow-color': '#d1cdd6',
},
}),
);
npm install node-sass --save
# or
yarn add node-sass
app.scss
的快照我所有的样式都在样式文件夹中定义。
/*
Variable definition
*/
@import 'styles/variable';
/*
common style import
*/
@import 'styles/common';
/**
*
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # Components styles import # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # #
*
* below I do imports for all my routes and components.
*/
@import 'styles/dashboard';
@import 'styles/details';
关于reactjs - Ant Design with sass in React with create-react-app,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51761928/
假设有一个创建用户的操作。如果存在指定的电子邮件或用户名,此操作可能会失败。如果它失败了,则需要确切地知道原因。在我看来,有三种方法可以做到这一点,我想知道是否有明显的赢家。 所以,这是一个类用户:
var obj1 = Object.create; console.log(typeof obj1); var obj2 = Object.create(null); console.log(type
I am getting this error after running npm run build yield User.create({^在运行NPM Run Build Year Use
我应该为其他人将从中继承的第一个父对象传递哪个参数,哪个参数更有效 Object.create(Object.prototype) Object.create(Object) Object.creat
我正在尝试使用 JDBC(最新版本)设置 SQL Server 2008 数据库。 我有一个我想一起执行的 setup sql 命令列表: 基本上我做的是: connection.setAutoCom
我正在尝试创建一个 CloudFormation 模板来创建一个 Auto Scaling 组,以便我可以从中启动 2 个实例。 我已经创建了 Auto Scaling 组,但我不知道如何编写用于从
我正在创建我的第一个WordPress网站。我已经在我的网站上安装了Elementor Pro插件。随之而来的一个有利因素是“循环旋转木马”。。。当我把它添加到我的页面时,一切似乎都在工作,但是当我点
create-react-app error 我从终端运行yarn start时收到此错误消息...我尝试了sudo killall node和许多其他过程来清除i-node却没有成功。 我也将我的c
在 CRM 中,当我尝试设置工作流程时,我可以选择与某个实体的创建时间相关的超时。涉及三个字段。 记录创建于 创建于 修改时间 虽然最后一个很明显,但我看不出其他两个之间有任何逻辑上的区别。 最佳答案
我在一次采访中被问到这个问题。我无法回答。 "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] 我可以
这是一个 Rails 新手问题: 当我在模型上调用 create() 时,它会绕过关联的 Controller create 操作吗? 例如,这没有命中我的标签 Controller #create
我不明白这两种特权之间的区别。 我找到了这两种解释,但对我没有帮助。 CREATE TABLE -> Enables a user to create a table owned by that us
我是 SharePoint 工作流的新手。 创建新任务并分配 TaskId 时,我有两个选项: 创建一个新字段来保存 TaskId 创建一个新属性来保存 TaskId。 新属性是一个依赖属性。 我的问
我突然注意到我们的代码库中有一个TDataModuleTestExchange(nil)“构造函数调用”: procedure TDialoogConfigExchange.ButtonTestCli
我有一个具有 TComponent 变量的单元,我在单元初始化时创建此组件,如下所示: var XComp: TComponent; . . . . initialization begin
Composer 是否提供了更新项目创建时使用的包的方法?即,如果我使用以下内容创建一个新的 Laravel 项目 composer create-project --prefer-dist lara
在 Hibernate 中,如果我们将 hbm2ddl.auto 设置为 create/create-drop ,那么它将在启动时删除旧模式并创建新模式。这意味着,它也会删除数据?..我的疑问是,如果
我使用了 create an Automated Build 中的此链接 ( this guide ) . 浏览器错误控制台显示: https://hub.docker.com/v2/reposito
我已经搜索了 msdn 并没有找到答案。我应该知道有什么区别吗? 如果真的没有区别,那么为什么会存在这种冗余? --SQL Server Stored Procedure Syntax CREATE
我有以下内容: var CardViewModel = function (data) { ko.mapping.fromJS(data, {}, this); this.editin
我是一名优秀的程序员,十分优秀!