postcss-import

Plug-in for importing local & remote stylesheets with PostCSS

MIT License

Downloads
329
Stars
3
Committers
2

@shgysk8zer0/postcss-import

Plug-in for importing local & remote stylesheets with PostCSS

Installation

npm i @shgysk8zer0/postcss-import

Usage

postcss.config.js

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

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