0

I search on google with keyword ssr vuetify and I find this github : https://github.com/vuetifyjs/webpack-ssr

I try to implement it. I clone the project and save it in the webpack-ssr folder

Then I run it and there exist error like this :

enter image description here

So there exist error : Missing required argument <app-name>.

How can I solve this error? I want to implement ssr in my project

1 Answer 1

2

Seems like it wants you to pass the app name as an extra argument:

vue init vuetifyjs/webpack-ssr my-app

Also there appears to be a warning that you need @vue/cli-init package. So may want to install that first too:

npm install @vue/cli-init --save-dev

Sign up to request clarification or add additional context in comments.

2 Comments

Great. It works. I just need to run this : vue init vuetifyjs/webpack-ssr my-app. Thanks
Maybe you can help me. Look at this : stackoverflow.com/questions/59524595/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.