codeforamerica/ohana-web-search

View on GitHub
config/webpack/loaders/erb.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  test: /\.erb$/,
  enforce: 'pre',
  exclude: /node_modules/,
  use: [{
    loader: 'rails-erb-loader',
    options: {
      runner: 'bin/rails runner'
    }
  }]
}