% npx create-nuxt-app tailwind-test
% git clone https://github.com/kreig303/nuxt-tailwindcss-3.3.0-bug.git
% cd nuxt-tailwindcss-3.3.0-bug
% npm i
% npm run dev
on line 89 of .lib/module.js
in v3.3.0
of @nuxtjs/tailwindcss
, there is an attempt to log out the url.
const url = nuxt.server.listeners ? nuxt.server.listeners[0].url : '/'
This uses nuxt.server.listeners
, which is empty if the listener was created with an external server framework.
This example uses koa
.