From 198ee8acec14ccf3125f5ab5063cc064458a53c0 Mon Sep 17 00:00:00 2001 From: xrkffgg Date: Sun, 14 Feb 2021 03:50:39 +0800 Subject: [PATCH] docs: optimize source code structure show (#2001) [skip ci] --- docs/guide/build.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/guide/build.md b/docs/guide/build.md index 3205d71acb0392..6e3c49252607e0 100644 --- a/docs/guide/build.md +++ b/docs/guide/build.md @@ -51,13 +51,13 @@ For example, you can specify multiple Rollup outputs with plugins that are only Suppose you have the following source code structure: ``` -|-package.json -|-vite.config.js -|-index.html -|-main.js -|-nested/ -|---index.html -|---nested.js +├── package.json +├── vite.config.js +├── index.html +├── main.js +└── nested + ├── index.html + └── nested.js ``` During dev, simply navigate or link to `/nested/` - it works as expected, just like for a normal static file server.