summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-06-01 09:57:12 -0600
committerGravatar GitHub <noreply@github.com> 2021-06-01 09:57:12 -0600
commitaddd67d2445de7bf61124412347b050b9a2d2caa (patch)
treecc883c27b13858865ba4c3fdd60f100003a8a065 /examples/blog/astro.config.mjs
parentfad266248612bf33af882e239dada1625280b59a (diff)
downloadastro-addd67d2445de7bf61124412347b050b9a2d2caa.tar.gz
astro-addd67d2445de7bf61124412347b050b9a2d2caa.tar.zst
astro-addd67d2445de7bf61124412347b050b9a2d2caa.zip
Change astroRoot to pages (#277)
#271
Diffstat (limited to 'examples/blog/astro.config.mjs')
-rw-r--r--examples/blog/astro.config.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs
index 89416b20f..9933e9571 100644
--- a/examples/blog/astro.config.mjs
+++ b/examples/blog/astro.config.mjs
@@ -1,10 +1,10 @@
export default {
projectRoot: '.',
+ pages: './src/pages',
public: './public',
dist: './dist',
buildOptions: {
sitemap: true,
site: 'https://mysite.dev/', // change
},
- astroRoot: './src',
};