You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
855 B

2 years ago
# fastify-boilerplate
2 years ago
Small simple Boilerplate for developing Websites or Webapps with,
* Web Framework - [Fastify](https://www.fastify.io/)
* Template Engine - [eta.js](https://eta.js.org/)
* Wrapper for Webpack - [Laravel-Mix](https://laravel-mix.com/)
* CSS Framework - [Plain UI](https://plain-ui.com/)
Install packages:
```
yarn install
```
Building CSS & JS:
```
yarn run build
or
yarn run build-production
```
Starting Server:
```
yarn run start
```
## Static & EtaHelper
2 years ago
All Static Files that are handle by Laravel Mix are copied to /static. You find
the webpack.mix.js in /packages/frontend. Fastify will handle all request for
static files by **/static/<filename>**. To handle files from manifest.json you
can use **asset()** in the templates.
2 years ago
```
<link href="{{ asset('/static/css/styles.css') }}" rel="stylesheet" type="text/css">
```