Skip to content

Commit

Permalink
feat: Adds mountDOMId to build manifest files
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-zahedi committed Jan 17, 2024
1 parent cb8521f commit f0d5f5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/gdu/config/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const CSPDefaultsList: CSPItem[] = [
'https://*.autoguru.com.au',
'https://*.autoguru.au',
'https://*.googletagmanager.com',
"https://*.googleapis.com",
'https://*.googleapis.com',
'https://*.google-analytics.com',
'https://*.heapanalytics.com/',
'https://heapanalytics.com/',
Expand Down
7 changes: 6 additions & 1 deletion packages/gdu/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ const { debug } = diary('gdu:config');
const readCache = new Map();

export interface GuruConfig {
type: 'ssr' | 'spa' | 'serverless' | 'serverless-resource' | 'web-component';
type:
| 'ssr'
| 'spa'
| 'serverless'
| 'serverless-resource'
| 'web-component';
mountDOMId: string;
octopusPackageId: string;
octopusProjectName: string;
Expand Down

0 comments on commit f0d5f5b

Please sign in to comment.