Skip to content

Files

Latest commit

 

History

History
This branch is 282 commits behind vitejs/vite:main.

template-qwik-ts

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 6, 2023
Oct 22, 2024
Oct 5, 2024
Jul 6, 2023
Jul 19, 2023
Dec 9, 2024
Nov 26, 2024
Jul 31, 2024
Nov 26, 2024
Oct 4, 2024

Qwik + Vite

Qwik in CSR mode

This starter is using a pure CSR (Client Side Rendering) mode. This means, that the application is fully bootstrapped in the browser. Most of Qwik innovations however take advantage of SSR (Server Side Rendering) mode.

export default defineConfig({
  plugins: [
    qwikVite({
      csr: true,
    }),
  ],
})

Use npm create qwik@latest to create a full production ready Qwik application, using SSR and QwikCity, our server-side metaframwork.

Usage

$ npm install # or pnpm install or yarn install

Learn more on the Qwik Website and join our community on our Discord

Available Scripts

In the project directory, you can run:

npm run dev

Runs the app in the development mode.
Open http://localhost:5173 to view it in the browser.

npm run build

Builds the app for production to the dist folder.