A loader for webpack that lets you import files as a string.
npm install --save-dev raw-loader
通过 webpack 配置、命令行或者内联使用 loader。
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/,
use: 'raw-loader'
}
]
}
}
在你的项目中
import txt from './file.txt';
webpack --module-bind 'txt=raw-loader'
在你的项目中
import txt from 'file.txt';
在你的项目中
import txt from 'raw-loader!./file.txt';
Juho Vepsäläinen | Joshua Wiens | Kees Kluskens | Sean Larkin |