File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 11
11
"build" : {
12
12
"builder" : " @angular-devkit/build-angular:browser" ,
13
13
"options" : {
14
- "outputPath" : " dist" ,
14
+ "outputPath" : " dist/public " ,
15
15
"index" : " src/index.html" ,
16
16
"main" : " src/main.ts" ,
17
17
"tsConfig" : " src/tsconfig.app.json" ,
Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ module.exports = function(app) {
25
25
app . use ( cookieParser ( ) ) ;
26
26
27
27
if ( 'production' === env ) {
28
- app . use ( express . static ( path . join ( configurations . root , 'dist' ) ) ) ;
29
- app . set ( 'appPath' , 'dist' ) ;
28
+ app . use ( express . static ( path . join ( configurations . root , 'dist/public ' ) ) ) ;
29
+ app . set ( 'appPath' , 'dist/public ' ) ;
30
30
app . use ( morgan ( 'dev' ) ) ;
31
31
app . use ( errorHandler ( ) ) ; // Error handler - has to be last
32
32
}
33
33
34
34
if ( 'development' === env || 'test' === env ) {
35
- app . use ( express . static ( path . join ( configurations . root , 'dist' ) ) ) ;
36
- app . set ( 'appPath' , 'dist' ) ;
35
+ app . use ( express . static ( path . join ( configurations . root , 'dist/public ' ) ) ) ;
36
+ app . set ( 'appPath' , 'dist/public ' ) ;
37
37
app . use ( morgan ( 'dev' ) ) ;
38
38
app . use ( errorHandler ( ) ) ; // Error handler - has to be last
39
39
}
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ function createParam(ticker: string): AlgoParam {
13
13
}
14
14
15
15
export const stockList = [
16
+ 'RKT' ,
16
17
'NOK' ,
17
18
'COUP' ,
18
19
'TDG' ,
Original file line number Diff line number Diff line change 2
2
"compileOnSave" : false ,
3
3
"compilerOptions" : {
4
4
"importHelpers" : true ,
5
- "outDir" : " ./dist" ,
5
+ "outDir" : " ./dist/public " ,
6
6
"sourceMap" : true ,
7
7
"declaration" : false ,
8
8
"module" : " commonjs" ,
You can’t perform that action at this time.
0 commit comments