Skip to content

Set title explicitly

We can specify the title explicitly in the nuxt.config.js file:

  head: {
    titleTemplate: '%s - ' + process.env.npm_package_name,
    title: process.env.npm_package_name || '',
    // ...
  }

This currently leads us to a title like "sensor_management - sensor_management".

This title should be set explicitly to something more human friendly.