diff options
Diffstat (limited to 'examples/with-nanostores')
-rw-r--r-- | examples/with-nanostores/src/pages/index.astro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/with-nanostores/src/pages/index.astro b/examples/with-nanostores/src/pages/index.astro index e25769138..424384933 100644 --- a/examples/with-nanostores/src/pages/index.astro +++ b/examples/with-nanostores/src/pages/index.astro @@ -18,8 +18,10 @@ import AdminsSolid from '../components/AdminsSolid.jsx'; <link rel="icon" type="image/x-icon" href="/favicon.ico" /> - <link rel="stylesheet" href={Astro.resolve('../styles/global.css')} /> - <link rel="stylesheet" href={Astro.resolve('../styles/home.css')} /> + <style global> + @import "../styles/global.css"; + @import "../styles/home.css"; + </style> <style> header { |