You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 months ago | |
---|---|---|
.. | ||
public | 2 months ago | |
src | 2 months ago | |
README.md | 2 months ago | |
_gitignore | 2 months ago | |
index.html | 2 months ago | |
package.json | 2 months ago | |
tsconfig.app.json | 2 months ago | |
tsconfig.json | 2 months ago | |
tsconfig.node.json | 2 months ago | |
vite.config.ts | 2 months ago |
README.md
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.