-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.conf.js
53 lines (44 loc) · 1.31 KB
/
workspace.conf.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
43
44
45
46
47
48
49
50
51
52
53
/**
* PoliteJS Workspace
* ==================
*
* Modify this file if you need to customise Workspace behaviour or your
* folder names and structure.
*
* All the options are listed here with their default values and a
* detailed comment description
*
*/
module.exports = {
source: {
// app source folder base name
path: 'app',
// assets folder within your app source folder
assets: 'assets',
// you can organize you features in sub-folders by changing this option to be an array.
features: 'features',
// by default you write your javascript entry points beside the HTML files
// but you can move them into a sub-folder if you prefer.
scripts: '.',
// by default you write your CSS entry points beside the HTML files
// but you can move them into a sub-folder if you prefer.
//
// NOTE: this can be the same folder used for Javascript entry points!
styles: 'styles'
},
target: {
dev: {
path: 'build/dev'
}
},
server: {
dev: {
port: 8080,
compress: true
}
},
/**
* Forward specific webpack configurations
*/
webpack: require('./webpack.config.js'),
};