forked from WikiEducationFoundation/WikiEduDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
41 lines (29 loc) · 811 Bytes
/
config.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
//--------------------------------------------------------
// Config Variables
//--------------------------------------------------------
module.exports = {
// Source path
sourcePath: 'app/assets',
// View path
viewPath: 'app/views',
// Compile path
outputPath: 'public/assets',
// Public directory
publicPath: 'public',
// Test path
testPath: 'test',
// Directory where vendor files live
vendorPath: 'vendor',
// Name of JavaScript directory
jsDirectory: 'javascripts',
// Name of CSS directory
cssDirectory: 'stylesheets',
// Name of Images directory
imagesDirectory: 'images',
// Name of SVG directory
svgDirectory: 'svg',
// Name of main JS file
jsMainFile: 'main',
// Name of main CSS file
cssMainFiles: '+(main|training|surveys|styleguide)',
};