mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 10:09:31 +08:00
18 lines
449 B
Text
18 lines
449 B
Text
# @unocss/core
|
|
|
|
The core engine of [UnoCSS](https://github.com/unocss/unocss) without any presets. It can be used as the engine of your own atomic CSS framework.
|
|
|
|
## Usage
|
|
|
|
```ts
|
|
import { createGenerator } from '@unocss/core'
|
|
|
|
const generator = createGenerator({ /* user options */ }, { /* default options */ })
|
|
|
|
const { css } = await generator.generate(code)
|
|
```
|
|
|
|
## License
|
|
|
|
MIT License © 2021-PRESENT [Anthony Fu](https://github.com/antfu)
|
|
|