raw-loader
安装
npm install --save-dev raw-loader
用法
通过 webpack 配置、命令行或者内联使用 loader。
通过 webpack 配置(推荐)
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.txt$/,
use: 'raw-loader'
}
]
}
}
在你的项目中
import txt from 'file.txt';
通过命令行(CLI)
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 |