Since v1.0.0-rc3 process.BROWSER_BUILD has been removed in flavour of process.browser
This happens with NUXT "SSR" option enabled, probably you are using a plugin or something that SSR (Server side rendering) cant resolve, there are two ways to solve this:
1- In you template use
2- In your JS scripts inside .vue file, use if(process.browser){//your code here} to bypass SSR.
This is to bypass the SSR, if you need your functions keeping the SSR, just search for another plugin...
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
This happens with NUXT "SSR" option enabled, probably you are using a plugin or something that SSR (Server side rendering) cant resolve, there are two ways to solve this:
1- In you template use for remove SSR template parts.
2- In your JS scripts inside .vue file, use if(process.browser){//your code here} to bypass SSR.
This is to bypass the SSR, if you need your functions keeping the SSR, just search for another plugin...