Adjust the site for proper submodule utilization
This commit is contained in:
parent
1aac5ffa58
commit
9ff236d881
6 changed files with 11 additions and 8 deletions
|
@ -3,9 +3,9 @@
|
|||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"dev": "NODE_PATH=. astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro build",
|
||||
"build": "NODE_PATH=. astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import Layout from "../layouts/primary.astro"
|
||||
import Layout from "layouts/primary.astro"
|
||||
---
|
||||
<Layout>
|
||||
<h1>Hi there!</h1>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
import Layout from "../layouts/primary.astro"
|
||||
import BlogPost from "../components/blogpost.astro"
|
||||
import Layout from "layouts/primary.astro"
|
||||
import BlogPost from "components/blogpost.astro"
|
||||
const allPosts = await Astro.glob('../pages/blog/*.md');
|
||||
---
|
||||
<Layout>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import Layout from "../layouts/primary.astro"
|
||||
import Layout from "layouts/primary.astro"
|
||||
---
|
||||
<Layout>
|
||||
<h1>Welcome to ~LogicallyLogi~</h1>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
import Layout from "../layouts/primary.astro"
|
||||
import ProjectDisplay from "../components/projectdisplay.astro";
|
||||
import Layout from "layouts/primary.astro"
|
||||
import ProjectDisplay from "components/projectdisplay.astro";
|
||||
const projects = await Astro.glob('../pages/projects/*.md');
|
||||
---
|
||||
<Layout>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": "src"
|
||||
},
|
||||
"extends": "astro/tsconfigs/strictest"
|
||||
}
|
Loading…
Reference in a new issue