whatever-loader
Version:
Load whatever u wanna loader with webpack.
46 lines (35 loc) • 670 B
Markdown
Loading whatever u wanna load with webpack.
```bash
npm install --save-dev whatever-loader
```
The `whatever-loader` can load whatever file to your program, you will get the file content.
**file.js**
```js
import tpl from 'file.tpl';
import json from 'json-file.json';
import conf from 'config.conf';
```
**webpack.config.js**
```js
module.exports = {
module: {
rules: [
{
test: /\.tpl$/,
use: [ 'whatever-loader' ]
},
{
test: /\.json$/,
use: [ 'whatever-loader' ]
},
{
test: /\.conf$/,
use: [ 'whatever-loader' ]
}
]
}
}
```