1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/config/webpack/modules/js_erb.js

22 lines
477 B
JavaScript
Raw Normal View History

const path = require('path');
2020-09-09 11:54:49 +02:00
module.exports = {
test: /\.js\.erb$/,
enforce: 'pre',
exclude: /node_modules/,
2020-09-22 14:20:47 +02:00
use: [
{
loader: 'auto-ngtemplate-loader',
options: {
pathResolver: (templatePath) => path.join(__dirname, `../../../app/frontend/templates${templatePath}`)
}
2020-09-22 14:20:47 +02:00
},
{
loader: 'rails-erb-loader',
options: {
runner: (/^win/.test(process.platform) ? 'ruby ' : '') + 'bin/rails runner'
}
2020-09-09 11:54:49 +02:00
}
2020-09-22 14:20:47 +02:00
]
2020-09-09 11:54:49 +02:00
};