1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activestorage/webpack.config.js
Yoshiyuki Hirano fc8947012f webpack is assigned but never used in webpack.config.js
* Removed webpack const, so it is assigned but never used in webpack.config.js.
2017-12-11 00:01:16 +09:00

26 lines
481 B
JavaScript

const path = require("path")
module.exports = {
entry: {
"activestorage": path.resolve(__dirname, "app/javascript/activestorage/index.js"),
},
output: {
filename: "[name].js",
path: path.resolve(__dirname, "app/assets/javascripts"),
library: "ActiveStorage",
libraryTarget: "umd"
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
}
}
]
}
}