-
Notifications
You must be signed in to change notification settings - Fork 4
Description
This is an awesome idea, thanks for sharing your boilerplate @Hernanm0g!
I just wanted to point out that in my team we are trying to manually deploy the app. Though we are facing some issues, like the one pointed out in meteor-vue/vue-meteor#415.
We pinned the version of Vue to 2.6.10 and although not ideal, this would probably do.
Unfortunately we are now at this point, where a Vuetify file seems to be missing ( perhaps misplaced? )
Here you can see me trying to run the built app (uncompressed the result of $ meteor build and installed the dependencies on the /bundle/programs/server folder) and after this command :
$ PORT=8086 node main and visiting http://localhost:8086
I am getting:
Error: ENOENT: no such file or directory, open '/home/ackzell/tmp/builtApp/bundle/programs/server/node_modules/vuetify/dist/vuetify.min.css'
at Object.openSync (fs.js:462:3)
at Object.readFileSync (fs.js:364:35)
at imports/startup/server/index.js:59:32
at new Promise (<anonymous>)
at Object.VueSSR.createApp (imports/startup/server/index.js:44:12)
at packages/akryum:vue-ssr/server/index.js:96:31
at Meteor.EnvironmentVariable.EVp.withValue (packages/meteor.js:1234:12)
at packages/akryum:vue-ssr/server/index.js:86:23
at Meteor.EnvironmentVariable.EVp.withValue (packages/meteor.js:1234:12)
at packages/akryum:vue-ssr/server/index.js:81:24
at new Promise (<anonymous>)
at packages/akryum:vue-ssr/server/index.js:73:20
at packages/server-render/server-register.js:14:19
at packages/server-render/server.js:28:36
at /home/ackzell/tmp/builtApp/bundle/programs/server/npm/node_modules/meteor/promise/node_modules/meteor-promise/fib ber_pool.js:43:40 {
errno: -2,
syscall: 'open',
code: 'ENOENT',
path: '/home/ackzell/tmp/builtApp/bundle/programs/server/node_modules/vuetify/dist/vuetify.min.css'
}
Thanks a lot for the hard work and hopefully you can give me some pointers here.
Cheers!