Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/shgysk8zer0/postcss-import
- Owner: shgysk8zer0
- License: mit
- Created: 2023-06-20T20:44:24.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-24T18:28:12.000Z (4 months ago)
- Last Synced: 2024-10-05T14:40:39.239Z (4 months ago)
- Topics: build, node, npm, postcss, postcss-plugin
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@shgysk8zer0/postcss-import
- Size: 562 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
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 }),
]
};
```