json-raw-loader
v1.0.0
Published
<div align="center"> <img width="200" height="200" src="https://cdn3.iconfinder.com/data/icons/lexter-flat-colorfull-file-formats/56/raw-256.png"> <a href="https://github.com/webpack/webpack"> <img width="200" height="200" src="https://w
Downloads
5
Readme
raw-loader
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
:
$ npm install raw-loader --save-dev
Then add the loader to your webpack
config. For example:
file.js
import txt from './file.txt';
webpack.config.js
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/,
use: 'raw-loader'
}
]
}
}
Or from the command-line:
$ webpack --module-bind 'txt=raw-loader'
And run webpack
via your preferred method.
Examples
Inline.
import txt from 'raw-loader!./file.txt';