Skip to content
Snippets Groups Projects
webpack.config.dev.js 1.50 KiB
/* eslint-disable */
const Webpack = require('webpack')
const HtmlWebpackPlugin = require('html-webpack-plugin')

module.exports = {
  entry: './src/index.js',
  output: {
    path: __dirname + '/build/npm-build/',
    filename: 'bundle.js'
  },
  
  devServer: {
    host: "0.0.0.0",
    port: 8124, 
    inline: true,
    contentBase: "./src",
    https: false,
    watchOptions: {
      aggregateTimeout: 300,
      poll: 1000
    },
    proxy: {
      "/openbis": {
        "target": 'http://192.168.222.2:8888',
        "pathRewrite": {'^/openbis/resources' : '/openbis-test/resources'},
        "changeOrigin": true,
        "secure": false,
      }
    }
  },

  devtool: "source-map",

  mode: 'development',

  module: {
    rules: [
      {
        test: /\.(js|jsx)$/,
        exclude: /node_modules/,
        use: {
          loader: "babel-loader"
        }
      },
      {
        test: /\.(css)$/,
        use: [
          'style-loader',
          'css-loader'
        ]
      },
      {
        test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
        loader: 'url-loader',
        options: {
          limit: 10000
        }
      }
    ]
  },

  plugins: [
    new HtmlWebpackPlugin({
      inject: 'body',
      filename: './index.html',
      template: './index.html'
    }),
//    new Webpack.WatchIgnorePlugin(['/home/vagrant/openbis/openbis_ng_ui/react/node_modules/', '/home/vagrant/openbis/openbis_ng_ui/react/node/'])
    new Webpack.WatchIgnorePlugin([new RegExp("/node_modules/"), new RegExp("/node/")])
  ]
}