Does anyone recognise this output from vite build? I’m getting hundreds of lines like this and the build seems to have slowed considerably because of it. I’m pretty sure it’s linked to my updating vite, today, from 4.5 to 5.3.3.
<Buffer 3c 42 75 66 66 65 72 20 33 63 20 34 32 20 37 35 20 36 36 20 36 36 20 36 35 20 37 32 20 32 30 20 33 33 20 36 33 20 32 30 20 33 34 20 33 32 20 32 30 20 ... 128 more bytes>
<Buffer 3c 42 75 66 66 65 72 20 33 63 20 34 32 20 37 35 20 36 36 20 36 36 20 36 35 20 37 32 20 32 30 20 33 33 20 36 33 20 32 30 20 33 34 20 33 32 20 32 30 20 ... 128 more bytes>
<Buffer 3c 42 75 66 66 65 72 20 33 63 20 34 32 20 37 35 20 36 36 20 36 36 20 36 35 20 37 32 20 32 30 20 33 33 20 36 33 20 32 30 20 33 34 20 33 32 20 32 30 20 ... 128 more bytes>
My vite.config.ts is…
export default defineConfig({
resolve: {
alias: {
"@": path.join(__dirname, "./src"),
},
},
build: {
commonjsOptions: { transformMixedEsModules: true },
},
server: {
port: 80,
},
plugins: [Inspect(), react(), mkcert()],
base: pathInLibrary
});