From b4dea564b75af04d48841ecbe338c9464a65c2e2 Mon Sep 17 00:00:00 2001 From: wires Date: Tue, 12 May 2026 03:02:53 -0400 Subject: [PATCH] Fix alias --- src/layouts/Layout.astro | 7 +++++-- src/pages/index.astro | 32 ++++++++++++++++---------------- tsconfig.json | 2 +- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 025392c..c1f9ca2 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,5 +1,6 @@ --- -import '../../styles/main.scss'; +import '@styles/main.scss'; +import Theme from '@components/Theme/Theme.svelte'; --- @@ -12,7 +13,9 @@ import '../../styles/main.scss'; Proving Ground - + + + diff --git a/src/pages/index.astro b/src/pages/index.astro index 90fa205..a5f236a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -5,7 +5,7 @@ import ScrollerAnimate from '@components/ScrollerAnimate/ScrollerAnimate.svelte' import Article from '@components/Article/Article.svelte'; import BodyText from '@components/BodyText/BodyText.svelte'; import Headline from '@components/Headline/Headline.svelte'; -import Theme from '@components/Theme/Theme.svelte'; + import graphicOne from '../assets/Photo-3468.jpg'; import graphicTwo from '../assets/Photo-3471.jpg'; @@ -31,21 +31,21 @@ const graphics = await Promise.all([ --- - - +
+ + -
- - - +
- + diff --git a/tsconfig.json b/tsconfig.json index d3572ac..c939e55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,7 @@ "@assets/*": ["./src/assets/*"], "@components/*": ["./src/components/*"], "@lib/*": ["./src/lib/*"], - "../../styles/*": ["./src/styles/*"], + "@styles/*": ["./src/styles/*"], "@utils/*": ["./src/utils/*"] } },