Sha256: a366121153245c3a5c51fd922b88101f3cf7fb4f8fbd015e1d1a402a60580381

Contents?: true

Size: 370 Bytes

Versions: 1

Compression:

Stored size: 370 Bytes

Contents

const path = require('path');

module.exports = {
  entry: './src/javascript/index.js',
  output: {
    filename: 'index.pack.js',
    path: path.resolve(__dirname, 'app/assets/javascripts')
  },
  module: {
    rules: [
      {
        test: /\.(js|jsx)$/,
        exclude: /node_modules/,
        use: {
          loader: "babel-loader"
        }
      }
    ]
  }
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
attractor-0.3.4 webpack.config.js