From 16805de5f13b052f7c12906c8a75e89b79b5d9ea Mon Sep 17 00:00:00 2001 From: Thijs-Jan <13321277+MoltenCoffee@users.noreply.github.com> Date: Mon, 21 Feb 2022 20:59:36 +0100 Subject: [PATCH] Provide more detail to static folder placement --- docs/advanced-features/output-file-tracing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/output-file-tracing.md b/docs/advanced-features/output-file-tracing.md index 7ca97b5b19da..c325d05fc3b0 100644 --- a/docs/advanced-features/output-file-tracing.md +++ b/docs/advanced-features/output-file-tracing.md @@ -34,7 +34,7 @@ module.exports = { This will create a folder at `.next/standalone` which can then be deployed on it's own without installing `node_modules`. -Additionally, a minimal `server.js` file is also output which can be used instead of `next start`. This minimal server does not copy the `public` or `.next/static` folders by default as these should ideally be handled by a CDN instead, although these folders can be copied to the `standalone` folder manually and the `server.js` file will serve it automatically. +Additionally, a minimal `server.js` file is also output which can be used instead of `next start`. This minimal server does not copy the `public` or `.next/static` folders by default as these should ideally be handled by a CDN instead, although these folders can be copied to the `standalone/public` and `standalone/.next/static` folders manually, after which `server.js` file will serve these automatically. ## Caveats