forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
89 lines (85 loc) · 2.63 KB
/
server.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// @noflow
const webpack = require('webpack');
const WebpackDevServer = require('webpack-dev-server');
const config = require('./webpack.config');
const { oneLine, stripIndent } = require('common-tags');
const port = process.env.PERFHTML_PORT || 4242;
const fs = require('fs');
const path = require('path');
const localConfigExists = fs.existsSync(
path.join(__dirname, './webpack.local-config.js')
);
const serverConfig = {
contentBase: config.output.path,
publicPath: config.output.publicPath,
hot: process.env.NODE_ENV === 'development' ? true : false,
historyApiFallback: {
disableDotRule: true,
},
headers: {
// See res/.htaccess for more information about all these headers.
// /!\ Don't forget to keep it sync-ed with the headers here /!\
'X-Content-Type-Options': 'nosniff',
'X-XSS-Protection': '1; mode=block',
'X-Frame-Options': 'SAMEORIGIN',
'Referrer-Policy': 'same-origin',
'Content-Security-Policy': oneLine`
default-src 'self';
script-src
'self'
'sha256-eRTCQnd2fhPykpATDzCv4gdVk/EOdDq+6yzFXaWgGEw='
'sha256-AdiT28wTL5FNaRVHWQVFC0ic3E20Gu4/PiC9xukS9+E='
https://www.google-analytics.com;
style-src 'self' 'unsafe-inline';
img-src http: https: data:;
object-src 'none';
connect-src *;
frame-ancestors 'self';
form-action 'none'
`,
},
stats: {
colors: true,
},
};
// Allow a local file to override various options.
if (localConfigExists) {
try {
require('./webpack.local-config.js')(config, serverConfig);
} catch (error) {
console.error(
'Unable to load and apply settings from webpack.local-config.js'
);
console.error(error);
}
}
new WebpackDevServer(webpack(config), serverConfig).listen(
port,
'localhost',
function(err) {
if (err) {
console.log(err);
}
const barAscii =
'------------------------------------------------------------------------------------------';
console.log(barAscii);
console.log(`> perf.html is available at: http://localhost:${port}\n`);
if (port === 4242) {
console.log(
'> You can change this default port with the environment variable PERFHTML_PORT.\n'
);
}
if (localConfigExists) {
console.log(
'> We used your local file "webpack.local-config.js" to mutate webpack’s config values.'
);
} else {
console.log(stripIndent`
> You can customize the webpack dev server by creating a webpack.local-config.js
> file that exports a single function that mutates the config values:
> (webpackConfig, serverConfig) => void
`);
}
console.log(barAscii);
}
);