Skip to content

Commit

Permalink
fix(module): resolve runtime dir
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Feb 11, 2022
1 parent 619f620 commit 65aa169
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ export default defineNuxtModule<ModuleOptions>({
require('@tailwindcss/aspect-ratio')
],
content: [
`${runtimeDir}/components/**/*.{vue,js,ts}`,
`${runtimeDir}/presets/**/*.{js,ts}`
resolve(runtimeDir, 'components/**/*.{vue,js,ts}'),
resolve(runtimeDir, 'presets/**/*.{js,ts}')
]
},
cssPath: `${runtimeDir}/tailwind.css`
cssPath: resolve(runtimeDir, 'tailwind.css')
})

const presetsDir = resolve(runtimeDir, './presets')
Expand Down

1 comment on commit 65aa169

@vercel
Copy link

@vercel vercel bot commented on 65aa169 Feb 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

Please sign in to comment.