Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shgysk8zer0/postcss-import

Plug-in for importing local & remote stylesheets with PostCSS
https://github.com/shgysk8zer0/postcss-import

build node npm postcss postcss-plugin

Last synced: 3 months ago
JSON representation

Plug-in for importing local & remote stylesheets with PostCSS

Awesome Lists containing this project

README

        

# @shgysk8zer0/postcss-import
Plug-in for importing local & remote stylesheets with PostCSS

## Installation

```bash
npm i @shgysk8zer0/postcss-import
```

## Usage

### `postcss.config.js`

```js
import postCSSImport from '@shgysk8zer0/postcss-import';

export default {
map: { inline: false },
plugins: [
postCSSImport({ resolveUrls: true, recursive: true }),
]
};
```