forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase-config.js
34 lines (31 loc) · 1.14 KB
/
firebase-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
const yaml = require('js-yaml');
const fs = require('fs');
const redirectsYaml = fs.readFileSync('./redirects.yaml', 'utf8');
const {redirects: parsedRedirects} = yaml.safeLoad(redirectsYaml);
const firebaseJson = require('./firebase.incl.json');
firebaseJson.hosting.redirects = parsedRedirects.reduce(
(redirects, redirect) => {
const type = [301, 302].includes(redirect.type) ? redirect.type : 301;
if (redirect.source && redirect.destination) {
redirects.push({
source: redirect.source,
destination: redirect.destination,
type,
});
}
return redirects;
},
[],
);
if (process.env.ELEVENTY_ENV === 'prod') {
const hashListJson = fs.readFileSync('dist/script-hash-list.json', 'utf-8');
const hashList = JSON.parse(hashListJson);
firebaseJson.hosting.headers[0].headers.push({
key: 'Content-Security-Policy',
value:
`script-src 'strict-dynamic' ${hashList.join(' ')} ` +
`'unsafe-inline' http: https:; object-src 'none'; base-uri 'self'; ` +
`report-uri https://csp.withgoogle.com/csp/webdev`,
});
}
fs.writeFileSync('./firebase.json', JSON.stringify(firebaseJson, null, 2));