blakeblackshear.frigate/docs/plugins/raw-loader.js
2021-03-09 06:23:37 -06:00

13 lines
254 B
JavaScript

module.exports = function (context, options) {
return {
name: 'labelmap',
configureWebpack(config, isServer, utils) {
return {
module: {
rules: [{ test: /\.txt$/, use: 'raw-loader' }],
},
};
},
};
};