mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-29 12:53:32 +03:00
7f91081bd8
* Removed old docs leftovers. * Fixed broken links in the docs. * fix
141 lines
3.7 KiB
Markdown
141 lines
3.7 KiB
Markdown
---
|
|
title: Customizing the App
|
|
---
|
|
|
|
import { Required } from '@site/src/components/Required';
|
|
|
|
Each Wasp project can have only one `app` type declaration. It is used to configure your app and its components.
|
|
|
|
```wasp
|
|
app todoApp {
|
|
wasp: {
|
|
version: "^0.11.1"
|
|
},
|
|
title: "ToDo App",
|
|
head: [
|
|
"<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap\" />"
|
|
]
|
|
}
|
|
```
|
|
|
|
We'll go through some common customizations you might want to do to your app. For more details on each of the fields, check out the [API Reference](#api-reference).
|
|
|
|
### Changing the App Title
|
|
|
|
You may want to change the title of your app, which appears in the browser tab, next to the favicon. You can change it by changing the `title` field of your `app` declaration:
|
|
|
|
```wasp
|
|
app myApp {
|
|
wasp: {
|
|
version: "^0.11.1"
|
|
},
|
|
title: "BookFace"
|
|
}
|
|
```
|
|
|
|
### Adding Additional Lines to the Head
|
|
|
|
If you are looking to add additional style sheets or scripts to your app, you can do so by adding them to the `head` field of your `app` declaration.
|
|
|
|
An example of adding extra style sheets and scripts:
|
|
|
|
```wasp
|
|
app myApp {
|
|
wasp: {
|
|
version: "^0.11.1"
|
|
},
|
|
title: "My App",
|
|
head: [ // optional
|
|
"<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap\" />",
|
|
"<script src=\"https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js\"></script>",
|
|
"<meta name=\"viewport\" content=\"minimum-scale=1, initial-scale=1, width=device-width\" />"
|
|
]
|
|
}
|
|
```
|
|
|
|
## API Reference
|
|
|
|
```wasp
|
|
app todoApp {
|
|
wasp: {
|
|
version: "^0.11.1"
|
|
},
|
|
title: "ToDo App",
|
|
head: [
|
|
"<link rel=\"stylesheet\" href=\"https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap\" />"
|
|
],
|
|
auth: {
|
|
// ...
|
|
},
|
|
client: {
|
|
// ...
|
|
},
|
|
server: {
|
|
// ...
|
|
},
|
|
db: {
|
|
// ...
|
|
},
|
|
dependencies: [
|
|
// ...
|
|
],
|
|
emailSender: {
|
|
// ...
|
|
},
|
|
webSocket: {
|
|
// ...
|
|
}
|
|
}
|
|
```
|
|
|
|
The `app` declaration has the following fields:
|
|
|
|
- `wasp: dict` <Required />
|
|
Wasp compiler configuration. It is a dictionary with a single field:
|
|
|
|
- `version: string` <Required />
|
|
|
|
The version specifies which versions of Wasp are compatible with the app. It should contain a valid [SemVer range](https://github.com/npm/node-semver#ranges)
|
|
|
|
:::info
|
|
For now, the version field only supports caret ranges (i.e., `^x.y.z`). Support for the full specification will come in a future version of Wasp
|
|
:::
|
|
|
|
- `title: string` <Required />
|
|
|
|
Title of your app. It will appear in the browser tab, next to the favicon.
|
|
|
|
- `head: [string]`
|
|
|
|
List of additional lines (e.g. `<link>` or `<script>` tags) to be included in the `<head>` of your HTML document.
|
|
|
|
The rest of the fields are covered in dedicated sections of the docs:
|
|
|
|
- `auth: dict`
|
|
|
|
Authentication configuration. Read more in the [authentication section](../auth/overview) of the docs.
|
|
|
|
- `client: dict`
|
|
|
|
Configuration for the client side of your app. Read more in the [client configuration section](../project/client-config) of the docs.
|
|
|
|
- `server: dict`
|
|
|
|
Configuration for the server side of your app. Read more in the [server configuration section](../project/server-config) of the docs.
|
|
|
|
- `db: dict`
|
|
|
|
Database configuration. Read more in the [database configuration section](../data-model/backends) of the docs.
|
|
|
|
- `dependencies: [(string, string)]`
|
|
|
|
List of npm dependencies for your app. Read more in the [dependencies section](../project/dependencies) of the docs.
|
|
|
|
- `emailSender: dict`
|
|
|
|
Email sender configuration. Read more in the [email sending section](../advanced/email) of the docs.
|
|
|
|
- `webSocket: dict`
|
|
|
|
WebSocket configuration. Read more in the [WebSocket section](../advanced/web-sockets) of the docs.
|