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: 4 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2026-02-26T22:40:40.000Z (4 months ago)
- Last Synced: 2026-02-27T04:51:58.159Z (4 months ago)
- Topics: build, node, npm, postcss, postcss-plugin
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@shgysk8zer0/postcss-import
- Size: 591 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
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 }),
]
};
```