You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemmionic5/Mohem/node_modules_/raw-loader
ashwaq 66795daf5e add missing files 6 years ago
..
CHANGELOG.md add missing files 6 years ago
LICENSE add missing files 6 years ago
README.md add missing files 6 years ago
index.js add missing files 6 years ago
options.json add missing files 6 years ago

README.md

npm node deps tests coverage chat size

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';

License

MIT