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
- Host: GitHub
- URL: https://github.com/jdkcoder/farm-js-plugin-stylus
- Owner: jdkcoder
- Created: 2024-08-21T01:35:34.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T09:13:29.000Z (8 months ago)
- Last Synced: 2024-11-06T17:24:17.756Z (6 months ago)
- Topics: farm, farm-plugin, farmfe, stylus
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
]
})
```