An open API service indexing awesome lists of open source software.

https://github.com/jdkcoder/farm-js-plugin-stylus

Lightweight Stylus Plugin for @farmfe/farm
https://github.com/jdkcoder/farm-js-plugin-stylus

farm farm-plugin farmfe stylus

Last synced: 5 months ago
JSON representation

Lightweight Stylus Plugin for @farmfe/farm

Awesome Lists containing this project

README

        

## Setup

```bash
bun add farm-js-plugin-stylus@latest --save-dev
```
```bash
pnpm add farm-js-plugin-stylus@latest --save-dev
```
```bash
yarn add farm-js-plugin-stylus@latest --save-dev
```
```bash
npm i farm-js-plugin-stylus@latest --save-dev
```

Modify the farm config file:

```diff
import { defineConfig } from "@farmfe/core"
+ import stylusPlugin from 'farm-js-plugin-stylus'

export default defineConfig({
plugins: [
+ stylusPlugin()
]
})
```