Go to file
Cyril Šebek bbd72c23fc
Update Astro& created custom middleware
- Updated Astro to newest version (4.11.0)
- Created custom middleware (middleware.js), to extend on Astro's default i18n
- Code cleanup and bugfixes
2024-06-20 14:17:06 +02:00
.vscode Default Astro.js template 2024-03-19 12:59:26 +01:00
public Finished section for music 2024-06-17 11:58:32 +02:00
src Update Astro& created custom middleware 2024-06-20 14:17:06 +02:00
.gitignore Default Astro.js template 2024-03-19 12:59:26 +01:00
astro.config.mjs Update Astro& created custom middleware 2024-06-20 14:17:06 +02:00
components.json done language switching 2024-04-07 11:11:04 +02:00
package.json Update Astro& created custom middleware 2024-06-20 14:17:06 +02:00
pnpm-lock.yaml Update Astro& created custom middleware 2024-06-20 14:17:06 +02:00
README.md Finished section for music 2024-06-17 11:58:32 +02:00
tailwind.config.mjs Dali šme tam barvišky 2024-05-30 16:23:22 +02:00
tsconfig.json done language switching 2024-04-07 11:11:04 +02:00

Personal themeable i18n compatible website in astro

Code for my personal website written in astro with react.js elements. i18n compatible (even blog), easily CSS stylable (one .css file for everything)

🚀 Project Structure

The file & folder structure is as follows:

/
├── public/
│   └── favicon.svg
├── src/
│   ├── components/
│   │   └── Card.astro
│   ├── layouts/
│   │   └── Layout.astro
│   └── 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:4321
npm run build Build your production site to ./dist/
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