2023-10-29 20:25:36 +00:00
export default {
2023-10-30 17:17:01 +00:00
ssr : true ,
2023-10-29 20:25:36 +00:00
// Target: https://go.nuxtjs.dev/config-target
target : 'static' ,
2023-10-30 17:17:01 +00:00
hostname : "talespinner.wieerwill.de" ,
analyze : {
analyzerMode : 'static'
} ,
2023-10-29 20:25:36 +00:00
// Global page headers: https://go.nuxtjs.dev/config-head
head : {
2023-10-30 17:17:01 +00:00
titleTemplate : '%s - Tale Spinner' ,
title : 'Tale Spinner' ,
2023-10-29 20:25:36 +00:00
htmlAttrs : {
lang : 'en' ,
} ,
meta : [
{ charset : 'utf-8' } ,
{ name : 'viewport' , content : 'width=device-width, initial-scale=1' } ,
2023-10-30 17:17:01 +00:00
{
hid : 'description' ,
name : 'description' ,
content : 'Tale Spinner is a collaborative storytelling game. Create exciting stories with your friends by spinning symbols that guide your narrative!'
} ,
2023-10-29 20:25:36 +00:00
{ name : 'format-detection' , content : 'telephone=no' } ,
2023-10-30 17:17:01 +00:00
{ property : 'og:type' , content : 'website' } ,
{ property : 'og:title' , content : 'Tale Spinner - Spin your own tale with friends!' } ,
{ property : 'og:description' , content : 'Tale Spinner is a collaborative storytelling game. Create exciting stories with your friends by spinning symbols that guide your narrative!' } ,
{ property : 'og:url' , content : 'https://talespinner.wieerwill.de/' } ,
{ property : 'og:image' , content : 'https://talespinner.wieerwill.de/screenshot.png' } , // Replace with the path to your Open Graph image
{ property : 'twitter:card' , content : 'summary_large_image' } ,
2023-10-29 20:25:36 +00:00
] ,
2023-10-30 17:17:01 +00:00
link : [
{ rel : 'canonical' , href : 'talespinner.wieerwill.de' } ,
{ rel : 'icon' , type : 'image/x-icon' , href : '/favicon.ico' } ] ,
2023-10-29 20:25:36 +00:00
} ,
// Global CSS: https://go.nuxtjs.dev/config-css
css : [ ] ,
2023-10-30 17:17:01 +00:00
nitro : { //To have routes scanned for broken links automatically, they need to be pre-rendered by Nitro.
static : true ,
prerender : {
preset : 'service-worker' ,
crawlLinks : true ,
routes : [
'/' ,
'/about' ,
'/setup' ,
'/gameplay'
]
}
} ,
2023-10-29 20:25:36 +00:00
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins : [ ] ,
// Auto import components: https://go.nuxtjs.dev/config-components
components : true ,
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules : [
// https://go.nuxtjs.dev/eslint
'@nuxtjs/eslint-module' ,
] ,
// Modules: https://go.nuxtjs.dev/config-modules
modules : [ ] ,
// Build Configuration: https://go.nuxtjs.dev/config-build
build : { } ,
}