feat: added markdown to closed messages (#2255)

This commit is contained in:
Wyatt Johnson
2019-04-12 00:06:01 +02:00
committed by Kiwi
parent 08e8e61e88
commit 3b31e3b02d
10 changed files with 55 additions and 28 deletions
+5
View File
@@ -61,6 +61,11 @@ const serverConfig = createDevServerConfig({
serverPort: config.get("port"),
publicPath: webpackConfig[0].output!.publicPath!,
});
// Disable the host check on the dev server as this is used exclusively for
// development and not in production.
serverConfig.disableHostCheck = true;
const devServer = new WebpackDevServer(compiler, serverConfig);
// Launch WebpackDevServer.
devServer.listen(PORT, HOST, (err: Error) => {