blob: 2c1a6dc39f9bf5a1293bbe4dc86afeb15e4203b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
'astro': major
---
This import alias is no longer included by default with astro:assets. If you were using this alias with experimental assets, you must convert them to relative file paths, or create your own [import aliases](https://docs.astro.build/en/guides/aliases/).
```diff
---
// src/pages/posts/post-1.astro
- import rocket from '~/assets/rocket.png'
+ import rocket from '../../assets/rocket.png';
---
```
|