Skip to content

Instantly share code, notes, and snippets.

@moonglum
Created February 6, 2025 14:06
Show Gist options
  • Save moonglum/b69f360d3c2f56d800f9738d213e0a39 to your computer and use it in GitHub Desktop.
Save moonglum/b69f360d3c2f56d800f9738d213e0a39 to your computer and use it in GitHub Desktop.
loadedURLs
import * as sass from 'sass';
let result = sass.compile('style/index.scss');
console.log(result);
@use 'helper';
body {
background: red;
}
h1, h2, h3 {
text-wrap: balance;
}
{
"name": "sassy",
"main": "index.js",
"type": "module",
"dependencies": {
"sass": "^1.84.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment