Skip to content

Commit

Permalink
Merge pull request #770 from maizzle/fix-tailwind-compiled-path
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Sep 30, 2022
2 parents 46954d4 + d141425 commit c43d1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/generators/output/to-disk.js
Expand Up @@ -26,8 +26,8 @@ module.exports = async (env, spinner, config) => {
const parsed = []
let files = []

const css = (typeof get(config, 'tailwind.compiled') === 'string')
? config.tailwind.compiled
const css = (typeof get(config, 'build.tailwind.compiled') === 'string')
? config.build.tailwind.compiled
: await Tailwind.compile('', '', {}, config, spinner)

// Parse each template config object
Expand Down

0 comments on commit c43d1e5

Please sign in to comment.