@@ -14,6 +14,7 @@ interface LitDevEnvironment {
1414 googleAnalyticsId : string ;
1515 reportCspViolations : boolean ;
1616 playgroundSandboxUrl : string ;
17+ playgroundCdnBaseUrl : string ;
1718 mainUrl : string ;
1819 githubMainUrl : string ;
1920 githubApiUrl : string ;
@@ -74,6 +75,7 @@ export const dev = environment({
7475 eleventyOutDir : '_dev' ,
7576 googleAnalyticsId : TEST_GOOGLE_ANALYTICS_ID ,
7677 reportCspViolations : false ,
78+ playgroundCdnBaseUrl : 'https://cdn.jsdelivr.net/npm' ,
7779 get mainUrl ( ) {
7880 return `http://localhost:${ this . mainPort } ` ;
7981 } ,
@@ -110,6 +112,7 @@ const local = environment({
110112 eleventyOutDir : '_site' ,
111113 googleAnalyticsId : TEST_GOOGLE_ANALYTICS_ID ,
112114 reportCspViolations : false ,
115+ playgroundCdnBaseUrl : 'https://cdn.jsdelivr.net/npm' ,
113116 get mainUrl ( ) {
114117 return `http://localhost:${ this . mainPort } ` ;
115118 } ,
@@ -154,6 +157,7 @@ const pr = environment({
154157 eleventyOutDir : '_site' ,
155158 googleAnalyticsId : TEST_GOOGLE_ANALYTICS_ID ,
156159 reportCspViolations : false ,
160+ playgroundCdnBaseUrl : 'https://cdn.jsdelivr.net/npm' ,
157161 get mainUrl ( ) {
158162 const tag = stringEnv ( 'REVISION_TAG' ) ;
159163 return `https://${ tag } ---lit-dev-5ftespv5na-uc.a.run.app` ;
@@ -196,6 +200,7 @@ const prod = environment({
196200 eleventyOutDir : '_site' ,
197201 googleAnalyticsId : 'G-FTZ6CJP9F3' ,
198202 reportCspViolations : true ,
203+ playgroundCdnBaseUrl : 'https://cdn.jsdelivr.net/npm' ,
199204 mainUrl : 'https://lit.dev' ,
200205 playgroundSandboxUrl : 'https://playground.lit.dev/' ,
201206 githubMainUrl : 'https://github.com/' ,
0 commit comments