Skip to content

Commit

Permalink
Merge branch 'templates' into ssr
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Oct 14, 2024
2 parents 01c02a4 + 7a699b4 commit 0ab9597
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion example/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '2'
services:
oxigraph:
image: ghcr.io/oxigraph/oxigraph:0.4.0-rc.1
image: ghcr.io/oxigraph/oxigraph:0.4.1
user: root
command: serve --location /data --bind 0.0.0.0:7878
ports:
Expand Down
2 changes: 1 addition & 1 deletion example/kopflos.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default <KopflosConfig> {
},
'@kopflos-cms/vite': {
root: 'ui',
entrypoints: ['ui/*/*.html'],
entrypoints: ['ui/*.html'],
},
},
}
2 changes: 1 addition & 1 deletion example/resources/api/index.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ PREFIX kl: <https://kopflos.described.at/>
[
a code:EcmaScriptModule ;
code:link <node:@kopflos-cms/serve-file#default> ;
code:arguments ( "${uiRoot}/${type}/index.html"^^code:EcmaScriptTemplateLiteral ) ;
code:arguments ( "${uiRoot}/${type}.html"^^code:EcmaScriptTemplateLiteral ) ;
]
[
a code:EcmaScriptModule ;
Expand Down
4 changes: 2 additions & 2 deletions example/ui/plaque/index.html → example/ui/plaque.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<footer>
<p>&copy; 2024 Zazuko</p>
</footer>
<script type="module" src="../scripts.ts"></script>
<script type="module" src="../shadowRoot.ts"></script>
<script type="module" src="/scripts.ts"></script>
<script type="module" src="/shadowRoot.ts"></script>
</body>
</html>

0 comments on commit 0ab9597

Please sign in to comment.