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
+4-6
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,9 @@ var css = require("css!./file.css");
9
9
10
10
css code will be minimized if specified by the module system.
11
11
12
-
`@import` will be required with this css loader.
13
-
14
-
`url(...)` will be required. You should define useful loaders by config.
15
-
16
-
Good loaders to require these files is the [file-loader](https://github.com/webpack/file-loader) and the [url-loader](https://github.com/webpack/url-loader).
12
+
`@import` and `url(...)` are interpreted like `require()` and will be resolved by the css-loader.
13
+
Good loaders for requiring your assets are the [file-loader](https://github.com/webpack/file-loader)
14
+
and the [url-loader](https://github.com/webpack/url-loader) which you should specify in your config (see below).
17
15
18
16
### Example config
19
17
@@ -33,4 +31,4 @@ module.exports = {
33
31
34
32
## License
35
33
36
-
MIT (http://www.opensource.org/licenses/mit-license.php)
34
+
MIT (http://www.opensource.org/licenses/mit-license.php)
0 commit comments