79504238

Date: 2025-03-12 16:28:50
Score: 0.5
Natty:
Report link

In the Github issue, there is a suggestion to use the ASCII encoding: https://github.com/vitejs/vite/issues/13676

If a file has only Latin characters and numbers, there are more chances it will work with different encodings.

So, you can try something like this:

export default defineConfig({
  plugins: [vue()],
  esbuild:{
    charset: 'ascii'
  }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: gearcoded