/raw-extend-loader

raw extend loader module for webpack

Primary LanguageJavaScript

Raw Extend Loader

A loader for webpack that lets you import files as a string, raw-loader enhanced.

Install

npm install --save-dev raw-extend-loader

Usage

Use the loader either via your webpack config, CLI or inline.

Via webpack config (recommended)

webpack.config.js

module.exports = {
  module: {
    rules: [
      {
        test: /\.txt$/,
        use: [
          {
            loader: require.resolve('raw-extend-loader'),
            options: {
              dir: '/path/md', // Copy to the '/path/md' directory.
              filename: 'dir', // "underline | dir"
              sep: '___', // filename="underline", File name to the directory, using '___' interval, default value '__'.
            },
          },
        ],
      }
    ]
  }
}

option

  • dir Copy to the '/path/md' directory.
  • filename Optional underline | dir, According to the directory to store, or do not create a directory.
  • sep Set filename="underline", File name to the directory, using ___ interval, default value __.

In your application

import txt from './file.txt';

CLI

webpack --module-bind 'txt=raw-extend-loader'

In your application

import txt from 'file.txt';

Inline

In your application

import txt from 'raw-extend-loader!./file.txt';