Replies: 1 comment
-
Rspack / webpack does not support the use of variables in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
new URL('../assets/images/common/404Bg.jpg', import.meta.url)
正确地址。
const url = '../assets/images/common/404Bg.jpg';
new URL(url, import.meta.url)
错误地址。
为什么?
Beta Was this translation helpful? Give feedback.
All reactions