Skip to content

Commit

Permalink
fix: avoid checking removed buildModules (#192)
Browse files Browse the repository at this point in the history
* 🚧 what if we simply remove it

* 🚧 reverting to test

* πŸ› fix verified locally

* πŸ’‘ comment for reference

* πŸ’„ remove my auto-formatting damage
  • Loading branch information
acidjazz committed Nov 17, 2022
1 parent 0661207 commit 60bf3ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nuxt-windicss/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ export default defineNuxtModule<ModuleOptions>({

const installedModules = [
...nuxt.options.modules,
...nuxt.options.buildModules,
// Removed in Nuxt 3
// ...nuxt.options.buildModules,
]
// Make sure they're not using tailwind
// @todo move to a util
Expand Down

0 comments on commit 60bf3ad

Please sign in to comment.