Changing the id to match other projects
[aai/sparky-fe.git] / webpack.devConfig.js
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23
24 'use strict';
25
26 var path = require('path');
27 var webpack = require('webpack');
28 var devPort = process.env.PORT || 8001;
29
30 module.exports = {
31         devtool: 'eval-source-map',
32         entry: {
33                 'aai/bundle': [
34                         'app/main.app.jsx',
35                         `webpack-dev-server/client?https://localhost:${devPort}`,
36                         'webpack/hot/only-dev-server'
37                 ]
38         },
39         output: {
40                 path: path.join(__dirname, 'dist'),
41                 publicPath: `https://localhost:${devPort}/`,
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                 }
52         },
53         devServer: {
54                 port: devPort,
55                 historyApiFallback: true,
56                 publicPath: `https://localhost:${devPort}/`,
57                 contentBase: path.join(__dirname, 'dist'),
58                 hot: true,
59                 progress: true,
60                 inline: true,
61                 debug: true,
62   https: true,
63                 stats: {
64                         colors: true
65                 }
66         },
67         module: {
68                 preLoaders: [
69                         {test: /\.(js|jsx)$/, loader: 'source-map-loader'}
70                 ],
71                 loaders: [
72                         {test: /\.(js|jsx)$/, loaders: ['babel-loader', 'eslint-loader'], exclude: /node_modules/},
73                         {test: /\.(css|scss)$/, loaders: ['style', 'css?sourceMap', 'sass?sourceMap']},
74                         // required for font icons
75                         {test: /\.(woff|woff2)(\?.*)?$/, loader: 'url-loader?limit=16384&mimetype=application/font-woff'},
76                         {test: /\.(ttf|eot|otf)(\?.*)?$/, loader: 'file-loader'},
77                         {test: /\.(png|jpg|svg)(\?.*)?$/, loader: 'url-loader?limit=16384'},
78                         {test: /\.json$/, loaders: ['json']}
79                 ]
80         },
81         eslint: {
82                 configFile: './.eslintrc',
83                 emitError: true,
84                 emitWarning: true
85         },
86         plugins: [
87                 new webpack.DefinePlugin({
88                         DEBUG: true
89                 }),
90
91                 new webpack.HotModuleReplacementPlugin()
92         ]
93 };