raw-loader.js 254 B

123456789101112
  1. module.exports = function (context, options) {
  2. return {
  3. name: 'labelmap',
  4. configureWebpack(config, isServer, utils) {
  5. return {
  6. module: {
  7. rules: [{ test: /\.txt$/, use: 'raw-loader' }],
  8. },
  9. };
  10. },
  11. };
  12. };