Skip to content

Instantly share code, notes, and snippets.

View theKashey's full-sized avatar

Anton Korzunov theKashey

View GitHub Profile
import path from 'path';
function shouldApply(url) {
return path.extname(url) === '.css';
}
export function getFormat(url, context, defaultGetFormat) {
if (shouldApply(url)) {
return {
format: 'module',