We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4f9b5 commit 5e2b371Copy full SHA for 5e2b371
generator/index.js
@@ -34,7 +34,8 @@ function generateConfig(option) {
34
args.push('--full');
35
}
36
const { spawnSync } = require('child_process');
37
- spawnSync('./node_modules/.bin/tailwind', args);
+ const tailwind = path.resolve('./node_modules/.bin/tailwind');
38
+ spawnSync(tailwind, args, { shell: process.platform === 'win32'});
39
40
41
module.exports = (api, options) => {
0 commit comments