dojo
Version:
Dojo core is a powerful, lightweight library that makes common tasks quicker and easier. Animate elements, manipulate the DOM, and query with easy CSS syntax, all without sacrificing performance.
24 lines (21 loc) • 623 B
HTML
<html>
<head>
<title>publish require result</title>
<script type="text/javascript">
var dojoConfig = {
packages: [
{ name: 'dojo', location: 'node_modules/dojo' }
]
};
var publishing = location.search !== '?do-not-publish';
if (!publishing) {
dojoConfig.publishRequireResult = 0;
}
</script>
<script type='text/javascript' src='../../../../dojo.js'></script>
</head>
<body>
<h1>publish require result</h1>
</body>
</html>