[![npm][npm]][npm-url] [![node][node]][node-url] [![deps][deps]][deps-url] [![tests][tests]][tests-url] [![chat][chat]][chat-url]
A loader for webpack that allows importing files as a String.
This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.
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:
import txt from './file.txt';
// 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.
    © JS Foundation and other contributors
Licensed under the Creative Commons Attribution License 4.0.
    https://webpack.js.org/loaders/raw-loader