forked from qdouble/angular-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.js
42 lines (33 loc) · 1.05 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"use strict";
const root = require('./config/helpers.js').root
exports.DEV_PORT = 3000;
exports.E2E_PORT = 4201;
exports.HOST = 'localhost';
exports.PROD_PORT = 8088;
exports.UNIVERSAL_PORT = 8000;
exports.EXCLUDE_SOURCE_MAPS = [
// these packages have problems with their sourcemaps
root('node_modules/@angular'),
root('node_modules/rxjs')
]
exports.MY_PLUGINS = [
// use this to import your own webpack config plugins.
]
exports.MY_PRODUCTION_PLUGINS = [
// use this to import your own webpack config plugins for production use.
]
exports.MY_LOADERS = [
// use this to import your own loaders for webpack config.
]
exports.MY_PRE_LOADERS = [
// use this to import your own preLoaders for webpack config.
]
exports.MY_POST_LOADERS = [
// use this to import your own preLoaders for webpack config.
]
exports.MY_SERVER_PRE_LOADERS = [
// use this to import your own Universal server preLoaders for webpack config.
]
exports.MY_SERVER_INCLUDE_CLIENT_PACKAGES = [
// include these client packages so we can transform their source with webpack loaders
]