chore: shuffle files around
This commit is contained in:
parent
2d7ffaff20
commit
09a29f82cb
18 changed files with 6 additions and 6 deletions
|
|
@ -7,7 +7,7 @@ import remarkFootnotes from 'remark-footnotes';
|
||||||
|
|
||||||
const config = defineConfig({
|
const config = defineConfig({
|
||||||
layout: {
|
layout: {
|
||||||
blog: './src/layouts/blog.svelte',
|
blog: './src/lib/layouts/blog.svelte',
|
||||||
},
|
},
|
||||||
extensions: ['.svelte.md', '.md', '.svx'],
|
extensions: ['.svelte.md', '.md', '.svx'],
|
||||||
|
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
|
@ -11,7 +11,7 @@
|
||||||
import { mdiPencil } from '@mdi/js';
|
import { mdiPencil } from '@mdi/js';
|
||||||
import Icon from 'mdi-svelte';
|
import Icon from 'mdi-svelte';
|
||||||
import Divider from '$components/Divider.svelte';
|
import Divider from '$components/Divider.svelte';
|
||||||
import '../utils/one-dark.css';
|
import '$lib/utils/one-dark.css';
|
||||||
|
|
||||||
export let title;
|
export let title;
|
||||||
// svelte-ignore unused-export-let
|
// svelte-ignore unused-export-let
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { BlogPostMeta } from '../../types';
|
import type { BlogPostMeta } from '$lib/utils/types';
|
||||||
import Link from '$components/Link.svelte';
|
import Link from '$components/Link.svelte';
|
||||||
import ListItem from '$components/ListItem.svelte';
|
import ListItem from '$components/ListItem.svelte';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import type { BlogPostFrontmatter, BlogPostMeta } from '../../types';
|
import type { BlogPostFrontmatter, BlogPostMeta } from '../../lib/utils/types';
|
||||||
|
|
||||||
export async function GET() {
|
export async function GET() {
|
||||||
const modules = import.meta.glob('./*.svx');
|
const modules = import.meta.glob('./*.svx');
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import ListItem from '$components/ListItem.svelte';
|
import ListItem from '$components/ListItem.svelte';
|
||||||
import Link from '$components/Link.svelte';
|
import Link from '$components/Link.svelte';
|
||||||
import type { Skill } from '../types';
|
import type { Skill } from '../lib/utils/types';
|
||||||
|
|
||||||
let _SKILLS = [
|
let _SKILLS = [
|
||||||
{ name: 'React / Svelte', started: 2019 },
|
{ name: 'React / Svelte', started: 2019 },
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ const config = {
|
||||||
|
|
||||||
kit: {
|
kit: {
|
||||||
adapter: adapter(),
|
adapter: adapter(),
|
||||||
alias: { $components: 'src/components' },
|
alias: { $components: 'src/lib/components' },
|
||||||
},
|
},
|
||||||
prerender: {
|
prerender: {
|
||||||
default: true,
|
default: true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue