diff options
author | 2021-08-08 02:38:38 -0400 | |
---|---|---|
committer | 2021-08-07 23:38:38 -0700 | |
commit | 71882300b0447a0f4112d59cd4883982896e29d0 (patch) | |
tree | 333c1cf3695aea76f6b660df4233391f5f682f01 /examples/snowpack/src/pages/tutorials/react.md | |
parent | 3db90ea403b662af4c20d54ddacf98d9b31cbd77 (diff) | |
download | astro-71882300b0447a0f4112d59cd4883982896e29d0.tar.gz astro-71882300b0447a0f4112d59cd4883982896e29d0.tar.zst astro-71882300b0447a0f4112d59cd4883982896e29d0.zip |
Fix code examples that would fail if copy-pasted (#1050)
Diffstat (limited to 'examples/snowpack/src/pages/tutorials/react.md')
-rw-r--r-- | examples/snowpack/src/pages/tutorials/react.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/snowpack/src/pages/tutorials/react.md b/examples/snowpack/src/pages/tutorials/react.md index 0b9f38701..eced71003 100644 --- a/examples/snowpack/src/pages/tutorials/react.md +++ b/examples/snowpack/src/pages/tutorials/react.md @@ -118,7 +118,7 @@ The `mount` configuration changes where Snowpack looks for and builds files. Eve ```diff mount: { - /* ... */ -+ // directory name: 'build directory' ++ // directory name: 'build directory', + public: '/', + src: '/dist', }, |