houdini/config/webpack/loaders/erb.js

12 lines
234 B
JavaScript
Raw Normal View History

2019-11-15 22:28:55 +00:00
module.exports = {
test: /\.erb$/,
enforce: 'pre',
exclude: /node_modules/,
use: [{
loader: 'rails-erb-loader',
options: {
runner: (/^win/.test(process.platform) ? 'ruby ' : '') + 'bin/rails runner'
}
}]
}