[ci] yarn format
This commit is contained in:
parent
5b24bd1768
commit
6c3416ef44
1 changed files with 4 additions and 4 deletions
|
@ -161,12 +161,12 @@ As an alternative to `src/styles/global.css`, You may also add Tailwind utilitie
|
||||||
|
|
||||||
#### Migrating from v0.19
|
#### Migrating from v0.19
|
||||||
|
|
||||||
As of [version 0.20.0](https://github.com/snowpackjs/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()](/reference/api-reference#astroresolve):
|
As of [version 0.20.0](https://github.com/snowpackjs/astro/releases/tag/astro%400.20.0), Astro will no longer bundle, build and process `public/` files. Previously, we'd recommended putting your tailwind files in the `public/` directory. If you started a project with this pattern, you should move any Tailwind styles into the `src` directory and import them in your template using [Astro.resolve()](/reference/api-reference#astroresolve):
|
||||||
|
|
||||||
```astro
|
```astro
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
href={Astro.resolve("../assets/global.css")}
|
href={Astro.resolve("../assets/global.css")}
|
||||||
>
|
>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue