Skip to content

Qwik with Yumma CSS

Integrate Yumma CSS into Qwik applications.

Creating a new project

To create a new Qwik project, you need run the Qwik CLI in your terminal.

  1. Install Yumma CSS

    Install yummacss using a package manager.

    Terminal
    npm i yummacss -D

  2. Initialize configuration

    Create a configuration file in your project.

    Terminal
    npx yummacss init
  3. Set up configuration

    Specify the locations of all your project files in the config file.

    yumma.config.js
    export default {
    source: ["./src/**/*.{ts,tsx}"],
    output: "./src/global.css",
    buildOptions: {
    reset: true,
    minify: false,
    }
    };
  4. Build styles

    You can now start generating your CSS with the build or watch command.

    Terminal
    npx yummacss build
  5. Done!

    Youโ€™re all set to start using Yumma CSS utility classes in your project.

    routes/index.tsx
    import { component$ } from "@builder.io/qwik";
    export default component$(() => {
    return (
    <div class="bg-indigo-12 d-g h-dvh pi-c tc-white">
    <h1 class="fs-3xl fw-500">Yumma CSS โš™๏ธ Qwik</h1>
    </div>
    );
    });

Clone this project

Skip the guide steps entirely with our Qwik starter.

Cloning the project...
git clone https://github.com/yumma-lib/with-qwik.git