Skip to content

Commit

Permalink
Change output directory to output instead of dist
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Mar 14, 2024
1 parent 882d658 commit 63f72f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ There are also a bunch of `npm` commands for more fine-grained control:
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run build` | Build your production site to `./output/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
Expand Down
1 change: 1 addition & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
site: "https://nextflow.io/",
outDir: "./output",
markdown: {
shikiConfig: {
// Choose from Shiki's built-in themes (or add your own)
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build]
publish = "dist/"
publish = "output/"
command = "npm run build"

[build.environment]
Expand Down

0 comments on commit 63f72f7

Please sign in to comment.