url or path
Example:
import {transformFile} from '@tbela99/css-parser/web';
// remote file
let result = await transformFile('https://docs.deno.com/styles.css');
console.log(result.code);
// local file
result = await transformFile('./css/styles.css');
console.log(result.code);
transform css file