mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-26 12:14:42 +01:00
cca9464b09
Closes #25 Co-authored-by: Jonny Gerig Meyer <jonny@oddbird.net> Co-authored-by: Natalie Weizenbaum <nweiz@google.com>
25 lines
462 B
HTML
25 lines
462 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Browser Test</title>
|
|
<link rel="x-dart-test" href="browser_test.dart">
|
|
<script src="packages/test/dart.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"immutable": "../node_modules/immutable/dist/immutable.es.js"
|
|
}
|
|
}
|
|
</script>
|
|
<script type="module">
|
|
import * as sass from '../build/npm/sass.default.js';
|
|
window.sass = sass;
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|