Skip to content

Commit

Permalink
Locale middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
mate-h committed Sep 28, 2021
1 parent f2257e5 commit 228b02d
Show file tree
Hide file tree
Showing 12 changed files with 2,647 additions and 26 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# vite-ssr-web

Example of a completely framework-less approach to building a web app. It's all about the developer tooling and the build process!

Current minimal dependencies:
- `vite` for development
- `vite-plugin-ssr` for SSR and SSG
- `typescript` for maintainability
- `express` and `ts-node` for serving the app
- `lodash` for utility functions
- `storeon` for state management
- `tailwindcss` and `postcss` for styling
- `schema-dts` for type definitions for Schema.org vocabulary

## Development

```bash
npm install
npm run dev
```

Open the browser at https://localhost:3000/

For production:
```bash
npm run prod
```
Loading

0 comments on commit 228b02d

Please sign in to comment.