Correct base
documentation (#4992)
This commit is contained in:
parent
145e2c575a
commit
f93449b80f
1 changed files with 1 additions and 10 deletions
|
@ -420,22 +420,13 @@ export interface AstroUserConfig {
|
||||||
* @name base
|
* @name base
|
||||||
* @type {string}
|
* @type {string}
|
||||||
* @description
|
* @description
|
||||||
* The base path you're deploying to. Astro will match this pathname during development so that your development experience matches your build environment as closely as possible. In the example below, `astro dev` will start your server at `/docs`.
|
* The base path to deploy to. Astro will build your pages and assets using this path as the root. Currently, this has no effect during development.
|
||||||
*
|
*
|
||||||
* ```js
|
* ```js
|
||||||
* {
|
* {
|
||||||
* base: '/docs'
|
* base: '/docs'
|
||||||
* }
|
* }
|
||||||
* ```
|
* ```
|
||||||
*
|
|
||||||
* When using this option, you should mind that all of your imports will be affected. In this example, all of the imports including static resources and codes should add a prefix `/docs/`.
|
|
||||||
*
|
|
||||||
* For example, if you want to use a image in your Astro component, you need to change it from '/someimg.png' into '/docs/someimg.png'.
|
|
||||||
*
|
|
||||||
* ```astro
|
|
||||||
* <!-- <img src="/someimg.png"> is not correct. -->
|
|
||||||
* <img src="/docs/someimg.png">
|
|
||||||
* ```
|
|
||||||
*/
|
*/
|
||||||
base?: string;
|
base?: string;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue