diff options
author | 2022-03-28 23:54:25 -0400 | |
---|---|---|
committer | 2022-03-28 20:54:25 -0700 | |
commit | 030fd48bdd917206f32c78c88a3fe2a2d9191101 (patch) | |
tree | 7ac87aac59ba724bf05c829deb8f5940eaf06089 | |
parent | 1e3550d5ac8a6a3ece66a17133564ce2840f4fcf (diff) | |
download | astro-030fd48bdd917206f32c78c88a3fe2a2d9191101.tar.gz astro-030fd48bdd917206f32c78c88a3fe2a2d9191101.tar.zst astro-030fd48bdd917206f32c78c88a3fe2a2d9191101.zip |
[fix] 2924 Update import in astro config of portfolio starter (#2926)
* fix: update import in Portfolio starter astro config file
* chore: add changeset
-rw-r--r-- | .changeset/stale-walls-whisper.md | 5 | ||||
-rw-r--r-- | examples/portfolio/astro.config.mjs | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/stale-walls-whisper.md b/.changeset/stale-walls-whisper.md new file mode 100644 index 000000000..4f51e1504 --- /dev/null +++ b/.changeset/stale-walls-whisper.md @@ -0,0 +1,5 @@ +--- +'@example/portfolio': patch +--- + +fix import in astro config diff --git a/examples/portfolio/astro.config.mjs b/examples/portfolio/astro.config.mjs index f0dab7e31..08916b1fe 100644 --- a/examples/portfolio/astro.config.mjs +++ b/examples/portfolio/astro.config.mjs @@ -1,5 +1,5 @@ import { defineConfig } from 'astro/config'; -import preact from '@astrojs/render-preact'; +import preact from '@astrojs/preact'; // https://astro.build/config export default defineConfig({ |