Closed getninjaN closed 3 months ago
Hey there.
Looks like jorgenvatle:vite-bundler
is on the 3.0.0 pre-release. Could you make sure the meteor-vite
npm package is updated to the latest next
release as well?
npm i meteor-vite@next
The jorgenvatle:vite-bundler@3.0.0
pre-releases are experimental. If you're running into issues, you can safely downgrade to jorgenvatle:vite-bundler@2.0.1
which is current stable release for Meteor v3. Run npm i meteor-vite@latest
to also upgrade the npm package to the latest stable release.
Hey there.
Looks like
jorgenvatle:vite-bundler
is on the 3.0.0 pre-release. Could you make sure themeteor-vite
npm package is updated to the latestnext
release as well?npm i meteor-vite@next
The
jorgenvatle:vite-bundler@3.0.0
pre-releases are experimental. If you're running into issues, you can safely downgrade tojorgenvatle:vite-bundler@2.0.1
which is current stable release for Meteor v3. Runnpm i meteor-vite@latest
to also upgrade the npm package to the latest stable release.
Aha, I see! I'll test asap and get back to you.
Yep, that did the trick. Thanks, been updating like crazy to make the app work with Meteor 3 so I guess this just went along for the ride. :)
I got this again for some reason but managed to solve it.
So if someone else is wondering it was because of this code in my /imports/api/routes/main.js
file.
if (Meteor.isClient) {
Template.registerHelper("raw", (string) => string)
Template.registerHelper("doctype", () => "<!DOCTYPE html>")
Template.registerHelper("eq", (value, value2) => value === value2)
Template.registerHelper("neq", (value, value2) => value !== value2)
}
When I moved it to my SSR.js
file instead and using Blaze.Template.registerHelper()
instead of Template.registerHelper()
it went away. π
Hi. I'm trying to slowly upgrade my app to Meteor 3 and after managing to get the thing running-ish, I'm getting this in my terminal:
I have no idea from where, or why. This is the only information I'm getting. π
packages
versions