File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 25
25
run : |
26
26
npm ci
27
27
npm run build
28
- npm run obfuscate
29
28
30
29
- name : Deploy 🚀
31
30
uses : JamesIves/github-pages-deploy-action@v4
Original file line number Diff line number Diff line change 38
38
run : |
39
39
npm ci
40
40
npm run build
41
- npm run obfuscate
42
41
43
42
- name : Deploy preview
44
43
uses : rossjrw/pr-preview-action@v1
Original file line number Diff line number Diff line change 1
1
// place files you want to import through the `$lib` alias in this folder.
2
2
3
+ import { base } from '$app/paths' ;
4
+
3
5
import { AdvertisingServiceGoogleAdsense } from './advertising/service_google_adsense' ;
4
6
import { AdvertisingServiceMock } from './advertising/service_mock' ;
5
7
import { App } from './app' ;
@@ -17,7 +19,7 @@ import { TelemetryServiceMock } from './telemetry/service_mock';
17
19
18
20
const init_start = performance . now ( ) ;
19
21
20
- export const log = new Log ( IS_PRODUCTION_BUILD ? Log . TRACE : Log . TRACE ) ;
22
+ export const log = new Log ( IS_PRODUCTION_BUILD ? Log . INFO : Log . TRACE ) ;
21
23
22
24
log . debug ( init_start , 'Initializing...' ) ;
23
25
log . debug ( 'Config:' , {
@@ -38,4 +40,4 @@ export const app = new App(
38
40
: new TelemetryServiceMock ( )
39
41
) ;
40
42
41
- log . debug ( performance . now ( ) , ' Initialized.' ) ;
43
+ log . info ( performance . now ( ) , ` Initialized ${ base } .` ) ;
You can’t perform that action at this time.
0 commit comments