页面代码中引用本地图片: 页面中的地址:  我想将 /src/assets/image/login/icon_login.png 变成 [http://localhost:3000/src/assets/image/login/icon_login.png](https://link.segmentfault.com/?enc=PwkFVShRuRI%2BIhbMrt%2FBLA%3D%3D.725vMRRAiBxrn85LYf5aYT7Bj%2Ffiw5OOHco0YceOkG2r7kT9UwgXmqejDEqtDD5NprraAI14BEb3iZact09ueg%3D%3D) 应该如何配置? 我配置了vite里的base 没有效果 export default defineConfig(({ command, mode }) => { return { base: mode === 'production' ? '/MF_demo/' : 'http://localhost:3000', } })