webpack/examples/custom-json-modules/webpack.config.js

18 lines
210 B
JavaScript
Raw Normal View History

2019-11-29 01:12:11 +08:00
const toml = require("toml");
module.exports = {
module: {
rules: [
{
test: /\.toml$/,
type: "json",
parser: {
parse(input) {
return toml.parse(input);
}
}
}
]
}
};