我正在尝试使用Webpacker在Rails应用中设置来自Facebook的idx
babel插件。
https://github.com/facebookincubator/idx
https://github.com/rails/webpacker
我该如何正确地做到这一点?
答案 0 :(得分:0)
好的,我想出来了。必须将它添加到babel.js加载器。
// config/webpack/loaders/babel.js
module.exports = {
test: /\.js(\.erb)?$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
plugins: [
require('babel-plugin-idx'),
],
presets: [
['env', { modules: false }]
]
}
}