Skip to content

Commit 1c5b333

Browse files
committed
remove obsolete webpack section from readme
1 parent 1c15318 commit 1c5b333

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -86,24 +86,3 @@ set [`dontConvertShadow`](#dontconvertshadow). This may also change in future ve
8686
### Intended differences to the html `<div>`
8787

8888
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

Comments
 (0)