Recall & Review
beginner
What is Vercel in the context of web development?
Vercel is a platform that helps you easily deploy and host web projects, especially those built with modern frameworks like Svelte. It automates building and publishing your site online.
Click to reveal answer
beginner
How does Netlify simplify deploying a Svelte app?
Netlify connects to your code repository and automatically builds and publishes your Svelte app when you push changes. It also provides features like custom domains and HTTPS with little setup.
Click to reveal answer
intermediate
What file is important to configure for Svelte deployment on Vercel or Netlify?
The
svelte.config.js file helps set up how your Svelte app builds. Also, package.json scripts like build tell the platform how to create the final site.Click to reveal answer
intermediate
What is the role of the
vercel.json or netlify.toml file?These files let you customize deployment settings like redirects, environment variables, and build commands specific to Vercel or Netlify.Click to reveal answer
beginner
Why is continuous deployment useful with Vercel and Netlify?
Continuous deployment means your site updates automatically whenever you change your code. This saves time and keeps your live site fresh without manual steps.
Click to reveal answer
Which platform automatically builds and deploys your Svelte app when you push code to GitHub?
✗ Incorrect
Both Vercel and Netlify connect to your GitHub repository and automatically build and deploy your app when you push code.
What file typically contains build commands for deploying a Svelte app?
✗ Incorrect
The package.json file includes scripts like 'build' that tell the deployment platform how to build your app.
Which file would you edit to add custom redirects on Netlify?
✗ Incorrect
The netlify.toml file is used to configure redirects and other settings on Netlify.
What is a key benefit of continuous deployment?
✗ Incorrect
Continuous deployment automatically updates your live site whenever you push code changes.
Which platform is known for easy integration with Next.js but also supports Svelte?
✗ Incorrect
Vercel is famous for Next.js support but also supports Svelte and other frameworks.
Explain how you would deploy a Svelte app using Vercel from start to finish.
Think about linking your code, telling Vercel how to build, and letting it publish your site.
You got /4 concepts.
Describe the differences and similarities between deploying a Svelte app on Netlify versus Vercel.
Focus on deployment automation, configuration files, and hosting features.
You got /4 concepts.