antfu-collective / vitesse

🏕 Opinionated Vite + Vue Starter Template

Home Page:https://vitesse.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

alias with ~ error in <img /> usage

a1mersnow opened this issue · comments

commented

Describe the bug

In the src/pages/index.vue, I reference src/static/pwa.png via <img src="~/static/pwa.png" />, which report an error said:
image

Reproduction

https://github.com/aimergenge/vitesse

System Info

System:
    OS: macOS 12.6
    CPU: (8) arm64 Apple M1 Pro
    Memory: 72.88 MB / 16.00 GB
    Shell: 5.8.1 - /bin/zsh
  Binaries:
    Node: 16.16.0 - ~/.nvm/versions/node/v16.16.0/bin/node
    Yarn: 1.22.19 - ~/.nvm/versions/node/v16.16.0/bin/yarn
    npm: 8.11.0 - ~/.nvm/versions/node/v16.16.0/bin/npm
  Browsers:
    Chrome: 105.0.5195.125
    Firefox: 105.0.1
    Safari: 16.0

Used Package Manager

pnpm

Validations

  • Follow our Code of Conduct
  • Read the Contributing Guide.
  • Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  • Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
  • The provided reproduction is a minimal reproducible of the bug.
commented

But If I add a same record(but replace ~ with @) to resolve.alias:

resolve: {
  alias: {
    '~/': `${path.resolve(__dirname, 'src')}/`,
    '@/': `${path.resolve(__dirname, 'src')}/`,
  },
},

And replace <img src="~/static/pwa.png" /> with <img src="@/static/pwa.png" />, it just works!

commented

Closed because I think it's caused by vite or @vitejs/plugin-vue