mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +00:00
web/changelog: move components to dedicated folder
This commit is contained in:
parent
2efaa11670
commit
dbbd43e002
3 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
|||
<!-- Workaround for https://github.com/pngwn/MDsveX/issues/116 -->
|
||||
<script lang="ts" context="module">
|
||||
import a from "./OuterLink.svelte";
|
||||
import a from "$components/misc/OuterLink.svelte";
|
||||
export { a };
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
import ChangelogEntry from "./ChangelogEntry.svelte";
|
||||
import ChangelogEntry from "$components/changelog/ChangelogEntry.svelte";
|
||||
export let version = '';
|
||||
export let title = '';
|
||||
export let date = '';
|
|
@ -15,7 +15,7 @@ const config = {
|
|||
extensions: ['.md'],
|
||||
layout: join(
|
||||
dirname(fileURLToPath(import.meta.url)),
|
||||
'/src/components/misc/ChangelogEntryWrapper.svelte'
|
||||
'/src/components/changelog/ChangelogEntryWrapper.svelte'
|
||||
)
|
||||
})
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue