You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- If the URL starts with `~`, anything after it is interpreted as a module request. This means you can even reference assets inside node modules:
24
24
25
25
```html
26
-
<imgsrc="~/some-npm-package/foo.png">
26
+
<imgsrc="~some-npm-package/foo.png">
27
27
```
28
28
29
29
- (13.7.0+) If the URL starts with `@`, it's also interpreted as a module request. This is useful if your webpack config has an alias for `@`, which by default points to `/src` in any project created by `vue-cli`.
0 commit comments