Setup

Check the Nuxt.js documentation for more information about installing and using modules in Nuxt.js.

Installation

nuxt-twa depends on @nuxtjs/pwa module.

Add nuxt-twa and @nuxtjs/pwa dependency to your project:

yarn add --dev nuxt-twa @nuxtjs/pwa
npm i --save-dev nuxt-twa @nuxtjs/pwa

Edit your nuxt.config.js file to add twa module:

nuxt.config.js
{
  buildModules: [
    '@nuxtjs/pwa',
    'nuxt-twa',
  ]
}

Ignore Android folder

For the moment the Android project folder (android at the project's root) is fully deleted before each build. Thus it's not required to version it in git.

Create or add this to .gitignore:

.gitignore
android/

Configuration

TWA generation is almost fully automated. The only mandatory setting is the domain on which your site will be deployed. This domain must be publicly accessible and host the app you're trying to build.

nuxt.config.js
{
  twa: {
    host: 'your-domain.tld' // Without any protocol
  }
}

For all settings available see the dedicated page.

Edit this page on GitHub Updated at Sun, Nov 20, 2022