Skalven is built with Vite and LightningCSS, which allows extremely fast compilation and a modern development workflow.Documentation Index
Fetch the complete documentation index at: https://docs.hedwik.io/llms.txt
Use this file to discover all available pages before exploring further.
1. Requirements
Before editing the theme, make sure you have:- Node.js (Latest LTS recommended)
- A code editor (VS Code is recommended)
- Basic terminal usage
Check your Node.js installation
If Node.js is not installed, download it from nodejs.org. After installation, verify everything works:node -vnpm -vnpx -v
2. Editing the Skalven Theme
1. Extract the theme
From your downloaded files, extract: skalven.zip Open the extracted folder in VS Code.2. Install dependencies
Open a terminal inside VS Code and run:npm install
Wait until the installation is complete.
3. Start the development environment
Run:npm run dev
This command will:
- Compile CSS & JS instantly
- Watch file changes
- Refresh builds automatically
4. Build the production version
When your changes are finished, run:npm run build
A dist/ folder will be generated.

