You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-21Lines changed: 0 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -86,24 +86,3 @@ set [`dontConvertShadow`](#dontconvertshadow). This may also change in future ve
86
86
### Intended differences to the html `<div>`
87
87
88
88
Unlike the html `<div>`, `RoundDiv` still rounds the corners of borders of there is a border image set. This looks great with gradients, but might clash with the use of actual images as borders.
89
-
90
-
### webpack
91
-
92
-
If you use a preprocessor like webpack (which you most likely are), you need to turn off or polyfill the node
93
-
modules `url` and `path`, and turn off `fs`. This is due to the module [`css`](https://www.npmjs.com/package/css), which
94
-
uses them. In webpack, you can do this with
95
-
the [`resolve.fallback.<module_name>`](https://webpack.js.org/configuration/resolve/#resolvefallback) option:
96
-
97
-
```javascript
98
-
module.exports= {
99
-
resolve: {
100
-
fallback: {
101
-
path:false,
102
-
url:false,
103
-
fs:false,
104
-
}
105
-
}
106
-
}
107
-
```
108
-
109
-
If you use `create-react-app`, take a look at [`react-app-rewired`](https://www.npmjs.com/package/react-app-rewired).
0 commit comments