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.
Inside your project, you'll see the following directory structure:
├── public/
│ └── ...
└── src/
├── components/
│ └── ...
└── routes/
└── ...
-
src/routes: Provides the directory-based routing, which can include a hierarchy oflayout.tsxlayout files, and anindex.tsxfile as the page. Additionally,index.tsfiles are endpoints. Please see the routing docs for more info. -
src/components: Recommended directory for components. -
public: Any static assets, like images, can be placed in the public directory. Please see the Vite public directory for more info.
Use the npm run qwik add command to add additional integrations. Some examples of integrations includes: Cloudflare, Netlify or Express Server, and the Static Site Generator (SSG).
npm run qwik add # or `yarn qwik add`Development mode uses Vite's development server. The dev command will server-side render (SSR) the output during development.
npm start # or `yarn start`Note: during dev mode, Vite may request a significant number of
.jsfiles. 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 preview a production build locally and should not be used as a production server.
npm run preview # or `yarn preview`The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.
npm run build # or `yarn build`npm run build.servernpm run qwik add static- Running the above command will make the following changes to your project:
- A
build.serverscript will be automatically added to yourpackage.jsonfile. - An
adapters/static/vite.config.tsfile will be created for the static site specific config.
- A
- To build the static site:
Your build files will be generated into the
npm run build.server
distfolder by default.
- Update
staticAdapter({origin: )inadapters/static/vite.config.tsto the full Github URL:plugins: [ staticAdapter({ origin: "https://davidde.github.io/qwik-jokes-tutorial", }), ],
- Add
base: '/qwik-jokes-tutorial/',in the rootvite.config.ts:base: '/qwik-jokes-tutorial/', plugins: [ qwikCity(), qwikVite(), tsconfigPaths() ],
- Use
npm run build.fullfor the build step in the.github/workflows/main.ymlGithub Action workflow:The- name: Build Qwik app run: npm run build.full
scriptssection ofpackage.jsonshould contain:"scripts": { "build": "qwik build", "build.client": "vite build", "build.full": "npm run build && npm run build.server", "build.preview": "vite build --ssr src/entry.preview.tsx", "build.server": "vite build -c adapters/static/vite.config.ts", ... }
- Make sure to upload
dist/qwik-jokes-tutorialin the upload step of the.github/workflows/main.ymlGithub Action workflow:- name: Upload build output as an artifact for GitHub Pages uses: actions/upload-pages-artifact@v3 with: path: ./dist/qwik-jokes-tutorial
- The original joke fetches from
https://icanhazdadjoke.comat runtime will have to be updated to use client-side fetching. Fetching cannot be done inrouteLoader$()like in the original tutorial, because it runs on the server!