@@ -58,13 +58,23 @@ const configureTailwind = () => {
58
58
if ( selections !== undefined && selections . length > 0 ) {
59
59
if ( selections . includes ( TailwindOptions . installModule ) ) {
60
60
const moduleName = '@nuxtjs/tailwindcss'
61
- const command = await getInstallationCommand ( moduleName , true )
61
+ const tailwindCommand = await getInstallationCommand ( 'tailwindcss' , true )
62
+ const moduleCommand = await getInstallationCommand ( moduleName , true )
63
+
64
+ if ( ! isNuxtTwo ( ) ) {
65
+ await runCommand ( {
66
+ command : tailwindCommand ,
67
+ message : 'Installing TailwindCSS' ,
68
+ successMessage : 'TailwindCSS installed successfully' ,
69
+ errorMessage : 'TailwindCSS installation failed' ,
70
+ } )
71
+ }
62
72
63
73
await runCommand ( {
64
- command,
65
- message : 'Installing TailwindCSS' ,
66
- successMessage : 'TailwindCSS installed successfully' ,
67
- errorMessage : 'TailwindCSS installation failed' ,
74
+ command : moduleCommand ,
75
+ message : 'Installing TailwindCSS Module ' ,
76
+ successMessage : 'TailwindCSS Module installed successfully' ,
77
+ errorMessage : 'TailwindCSS Module installation failed' ,
68
78
} )
69
79
await addNuxtModule ( { npm : moduleName } )
70
80
}
0 commit comments