We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f6963 commit 16879ffCopy full SHA for 16879ff
3 files changed
.github/workflows/tag.yml
@@ -87,7 +87,7 @@ jobs:
87
mangle: true,
88
sourceMap: {
89
filename: outputName,
90
- url: outputName + ".map"
+ url: BASE_URL + outputName + ".map"
91
}
92
});
93
index.html
@@ -3,15 +3,11 @@
3
<head>
4
<meta charset="UTF-8" />
5
<title>ccmjs Hello Demo</title>
6
- <script src="https://ccmjs.github.io/framework/ccm.js"></script>
+ <script src="./libs/ccm/ccm.js"></script>
7
</head>
8
<body>
9
<script>
10
- ccm.start(
11
- "https://cdn.jsdelivr.net/gh/ccmjs/hello@v1.0.0/ccm.hello-1.0.0.min.mjs#sha384-AUnHcKTLBWEgqeIEisMB931h1vZ2ni61UNszI2eonTVjGZ0qSBOp2O2kPF9TDMD7",
12
- { name: "World" },
13
- document.body,
14
- );
+ ccm.start("./ccm.hello.mjs", { name: "World" }, document.body);
15
</script>
16
</body>
17
</html>
0 commit comments