From 6a4f78e290021e626a61324c4e3df9a480789744 Mon Sep 17 00:00:00 2001 From: Leah Date: Tue, 19 Mar 2019 21:25:09 +0100 Subject: [PATCH] fix ssr entry for typescript --- packages/cli/lib/lib/webpack/webpack-server-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/lib/lib/webpack/webpack-server-config.js b/packages/cli/lib/lib/webpack/webpack-server-config.js index 7da458e2a..22ec1f6fc 100644 --- a/packages/cli/lib/lib/webpack/webpack-server-config.js +++ b/packages/cli/lib/lib/webpack/webpack-server-config.js @@ -5,7 +5,7 @@ const baseConfig = require('./webpack-base-config'); function serverConfig(env) { return { entry: { - 'ssr-bundle': env.source('index.js'), + 'ssr-bundle': env.source('index'), }, output: { publicPath: '/',