Skip to content

Commit

Permalink
improve readme
Browse files Browse the repository at this point in the history
  • Loading branch information
benholloway committed Aug 13, 2015
1 parent 802d23a commit e8687d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ module.exports = {
};
```

### Options

* `absolute` Forces the url() to be resolved to an absolute path. This is considered
[bad practice](http://webpack.github.io/docs/how-to-write-a-loader.html#should-not-embed-absolute-paths) so only do it
if you know what you are doing.

* `sourceMap` Generate a source-map.

## How it works

The incoming source-map is used to resolve the original file. This is necessary where there was some preceding transpile
Expand All @@ -72,11 +80,3 @@ The search will continue while within the project directory and until a `package
encountered.

If the asset is not found then the `url()` statement will not be updated.

## Options

* `absolute` Forces the url() to be resolved to an absolute path. This is considered
[bad practice](http://webpack.github.io/docs/how-to-write-a-loader.html#should-not-embed-absolute-paths) so only do it
if you know what you are doing.

* `sourceMap` Generate a source-map.

0 comments on commit e8687d1

Please sign in to comment.