Use a vue component that call process node variable:
created() {
console.log(process);
},
In vue project process variable should be accessible.

I use process variable to know if I am in a broswer mode to load not ssr compatbile components vue-dropzone. code from here: https://github.com/Etheryte/nuxt-dropzone/blob/master/index.js
I use a workaround with lazy loading but just wanted to report it and understand if it's normal:
vueDropzone: () => import('vue2-dropzone'),
[x] My VuePress version is lower and euqal than 1.0.0-alpha.47:
[ ] My VuePress version is higher than 1.0.0-alpha.47, the following is the output of npx vuepress info in my VuePress project:
process is Node-only variable. if you want to access it in client side code, you should use [define] to define it.
我也遇到同样的问题
我也遇到同样的问题
我这个还比较尴尬的是,我这个是npm包中使用到了process