A loader for webpack that lets you import files as a string.
npm install --save-dev raw-loader
Use the loader either via your webpack config, CLI or inline.
##
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/,
use: 'raw-loader'
}
]
}
}
In your application
import txt from './file.txt';
webpack --module-bind 'txt=raw-loader'
In your application
import txt from 'file.txt';
In your application
import txt from 'raw-loader!./file.txt';
© JS Foundation and other contributors
Licensed under the Creative Commons Attribution License 4.0.
https://webpack.js.org/loaders/raw-loader