Hi, @Akryum, vite-bundler is a great package to connect meteor with vite.
All is going fine, but vite-bundler failed to import css with url() reference.
I'm using the latest meteor 2.10, which is using vite:bundler package as the default solution for vue project.
So just run meteor create --vue3 example to generate a scarffold and add:
Hi, @Akryum, vite-bundler is a great package to connect meteor with vite. All is going fine, but vite-bundler failed to import css with url() reference.
I'm using the latest meteor 2.10, which is using
vite:bundler
package as the default solution forvue
project. So just runmeteor create --vue3 example
to generate a scarffold and add:It seems that
remixicon.woff2
file in cssurl
is pointed to defaultlocalhost:3000/....
notlocalhost:5173/...
which is vite served.In a standalone vite project, it is rebased to
localhost:5173/....
correctly.