Fixing the errors on OOM
[aai/sparky-fe.git] / webpack.config.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 'use strict';
22
23 var path = require('path');
24 var webpack = require('webpack');
25 var devPort = process.env.PORT || 8001;
26
27 module.exports = {
28   devtool: 'eval-source-map',
29   entry: {
30     bundle: [
31       'app/main.app.jsx',
32       'webpack/hot/only-dev-server'
33     ],
34     'editAttributes/editAttributesBundle': [
35       'editAttributes/main.app.jsx',
36       'webpack/hot/only-dev-server'
37     ]
38   },
39   output: {
40     path: path.join(__dirname, 'dist'),
41     publicPath: `http://localhost:${devPort}/services/aai/webapp`,
42     filename: '[name].js'
43   },
44   resolve: {
45     root: [path.resolve('.')],
46     alias: {
47       app: 'src/app',
48       'generic-components': 'src/generic-components',
49       utils: 'src/utils',
50       images: 'resources/images',
51       editAttributes: 'src/editAttributes'
52     },
53     extensions: ["", ".webpack.js", ".web.js", ".js", ".json", ".jsx"]
54   },
55   devServer: {
56     port: devPort,
57     historyApiFallback: true,
58     publicPath: `http://localhost:${devPort}/`,
59     contentBase: path.join(__dirname, 'dist'),
60     hot: true,
61     progress: true,
62     inline: true,
63     debug: true,
64     stats: {
65       colors: true
66     }
67   },
68   module: {
69     preLoaders: [{
70       test: /\.(js|jsx)$/,
71       loader: 'source-map-loader'
72     }],
73     loaders: [
74       {test: /\.(js|jsx)$/, loaders: ['babel-loader', 'eslint-loader'], exclude: /node_modules/},
75       {test: /\.(css|scss)$/, loaders: ['style', 'css?sourceMap', 'sass?sourceMap']},
76       // required for font icons
77       {test: /\.(woff|woff2)(\?.*)?$/, loader: 'url-loader?limit=16384&mimetype=application/font-woff'},
78       {test: /\.(ttf|eot|otf)(\?.*)?$/, loader: 'file-loader'},
79       {test: /\.(png|jpg|svg)(\?.*)?$/, loader: 'url-loader?limit=16384'},
80       {test: /\.json$/, loaders: ['json']}
81     ]
82   },
83   eslint: {
84     configFile: './.eslintrc',
85     emitError: true,
86     emitWarning: true
87   },
88   plugins: [
89     new webpack.DefinePlugin({
90       DEBUG: true
91     }),
92
93     new webpack.HotModuleReplacementPlugin()
94   ]
95 };