mirror of
https://github.com/danog/dart-sass.git
synced 2024-11-30 04:39:03 +01:00
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>
|