Skip to content
This repository has been archived by the owner on Mar 17, 2021. It is now read-only.

Commit

Permalink
docs: improve (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilebottnawi committed Feb 12, 2019
1 parent 0622dc7 commit 062b267
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Expand Up @@ -19,10 +19,6 @@

A loader for webpack that allows importing files as a String.

## Requirements

This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.

## Getting Started

To begin, you'll need to install `raw-loader`:
Expand All @@ -47,7 +43,7 @@ module.exports = {
module: {
rules: [
{
test: /\.txt$/,
test: /\.txt$/i,
use: 'raw-loader'
}
]
Expand Down Expand Up @@ -77,6 +73,12 @@ Beware, if you already define loader(s) for extension(s) in `webpack.config.js`
import css from '!!raw-loader!./file.css'; // Adding `!!` to a request will disable all loaders specified in the configuration
```

## Contributing

Please take a moment to read our contributing guidelines if you haven't yet done so.

[CONTRIBUTING](./.github/CONTRIBUTING.md)

## License

#### [MIT](./LICENSE)
Expand Down

0 comments on commit 062b267

Please sign in to comment.