Skip to content

Commit 87c1c13

Browse files
author
David Zukowski
committed
chore(server): clarify production server functionality
1 parent 61a5c78 commit 87c1c13

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

server/main.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ if (config.env === 'development') {
4545
app.use(convert(serve(paths.client('static'))))
4646
} else {
4747
debug(
48-
'Server is being run outside of live development mode. This starter kit ' +
49-
'does not provide any production-ready server functionality. To learn ' +
50-
'more about deployment strategies, check out the "deployment" section ' +
51-
'in the README.'
48+
'Server is being run outside of live development mode, meaning it will ' +
49+
'only serve the compiled application bundle in ~/dist. Generally you ' +
50+
'do not need an application server for this and can instead use a web ' +
51+
'server such as nginx to serve your static files. See the "deployment" ' +
52+
'section in the README for more information on deployment strategies.'
5253
)
5354

5455
// Serving ~/dist by default. Ideally these files should be served by

0 commit comments

Comments
 (0)