astro/examples/subpath
2022-04-10 20:11:34 -07:00
..
public Support for using a subpath (#1801) 2021-11-15 10:33:51 -05:00
src Update examples for 0.24.0 (#2740) 2022-03-09 13:52:31 -08:00
.gitignore Merge branch 'main' into feat/vercel-adapter 2022-03-30 21:50:41 -03:00
.npmrc Move from yarn to pnpm (#2455) 2022-03-08 15:46:11 -06:00
.stackblitzrc Normalize and cleanup examples projects (#2364) 2022-01-12 10:37:16 -05:00
astro.config.mjs chore: updated examples to v0.26.0 (#2977) 2022-04-03 14:02:57 -05:00
package.json revert release 2022-04-10 20:11:34 -07:00
README.md update repo URL (#1994) 2021-11-23 14:47:05 -08:00
sandbox.config.json Support for using a subpath (#1801) 2021-11-15 10:33:51 -05:00
tsconfig.json Normalize and cleanup examples projects (#2364) 2022-01-12 10:37:16 -05:00

Astro Starter Kit: A site deployed to a subpath

npm init astro -- --template subpath

Open in StackBlitz

🧑‍🚀 Seasoned astronaut? Delete this file. Have fun!

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

/
├── public/
├── src/
│   └── components/
│       └── Time.jsx
│   └── pages/
│       └── index.astro
└── package.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying

👀 Want to learn more?

Feel free to check our documentation or jump into our Discord server.