Skip to content

Commit 8d64805

Browse files
committed
readme master
1 parent 6c7e9fc commit 8d64805

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

README.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,7 @@ To be compatible with existing css files (if not in CSS Module mode):
9090
|**`camelCase`**|`false`|Export Classnames in CamelCase|
9191
|**`importLoaders`**|`0`|Number of loaders applied before CSS loader|
9292

93-
<<<<<<< 1e4deb5d4e7bfc72ec436b518e132276d2bc1590
9493
The following webpack config can load CSS files, embed small PNG/JPG/GIF/SVG images as well as fonts as [Data URLs](https://tools.ietf.org/html/rfc2397) and copy larger files to the output directory.
95-
=======
96-
This webpack config can load CSS files, embed small png images as Data URLs and JPG images as files.
97-
>>>>>>> readme
9894

9995
**webpack.config.js**
10096
```js
@@ -106,20 +102,11 @@ module.exports = {
106102
use: [ 'style-loader', 'css-loader' ]
107103
},
108104
{
109-
<<<<<<< 1e4deb5d4e7bfc72ec436b518e132276d2bc1590
110105
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
111106
loader: 'url-loader',
112107
options: {
113108
limit: 10000
114109
}
115-
=======
116-
test: /\.png$/,
117-
use: { loader: 'url-loader', options: { limit: 100000 } },
118-
},
119-
{
120-
test: /\.jpg$/,
121-
use: [ 'file-loader' ]
122-
>>>>>>> readme
123110
}
124111
]
125112
}
@@ -407,17 +394,12 @@ By default, the exported JSON keys mirror the class names. If you want to cameli
407394
import { className } from 'file.css';
408395
```
409396

410-
<<<<<<< 1e4deb5d4e7bfc72ec436b518e132276d2bc1590
411397
<h2 align="center">Maintainers</h2>
412-
=======
413-
<h2 align="center">Maintainer</h2>
414-
>>>>>>> readme
415398

416399
<table>
417400
<tbody>
418401
<tr>
419402
<td align="center">
420-
<<<<<<< 1e4deb5d4e7bfc72ec436b518e132276d2bc1590
421403
<img width="150" height="150"
422404
src="https://avatars3.githubusercontent.com/u/166921?v=3&s=150">
423405
</br>
@@ -442,13 +424,6 @@ import { className } from 'file.css';
442424
<a href="https://github.com/TheLarkInn">Sean Larkin</a>
443425
</td>
444426
</tr>
445-
=======
446-
<img width="150" height="150" src="https://github.com/sokra.png?s=150">
447-
<br>
448-
<a href="https://github.com/sokra">Tobias Koppers</a>
449-
</td>
450-
<tr>
451-
>>>>>>> readme
452427
<tbody>
453428
</table>
454429

0 commit comments

Comments
 (0)