To view the site, visit https://xbox-kbm-support.vercel.app/.
This project is using Qwik with QwikCity. QwikCity is just an extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.
Development mode uses Vite's development server. During development, the dev
command will server-side render (SSR) the output.
yarn start
Note: during dev mode, Vite may request a significant number of
.js
files. This does not represent a Qwik production build.
The preview command will create a production build of the client modules, a production build of src/entry.preview.tsx
, and run a local server. The preview server is only for convenience to locally preview a production build, and it should not be used as a production server.
yarn preview
The production build will generate client and server modules by running both client and server build commands. Additionally, the build command will use Typescript to run a type check on the source code.
yarn build
This starter site is configured to deploy to Vercel Edge Functions, which means it will be rendered at an edge location near to your users.