mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
14 lines
281 B
Markdown
14 lines
281 B
Markdown
|
---
|
||
|
'astro': patch
|
||
|
---
|
||
|
|
||
|
Astro will now skip asset optimization when there is a query in the import. Instead, it will let vite deal with it using plugins.
|
||
|
|
||
|
```vue
|
||
|
<script>
|
||
|
// This will not return an optimized asset
|
||
|
import Component from './Component.vue?component'
|
||
|
</script>
|
||
|
```
|
||
|
|