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 ac43580 commit d1384b8Copy full SHA for d1384b8
packages/astro/src/cli/add/index.ts
@@ -371,7 +371,12 @@ export async function add(names: string[], { flags }: AddOptions) {
371
title: 'src/layouts/Layout.astro',
372
},
373
);
374
- logger.warn('SKIP_FORMAT', msg.actionRequired('You must import your Tailwind stylesheet, e.g. in a shared layout:\n'));
+ logger.warn(
375
+ 'SKIP_FORMAT',
376
+ msg.actionRequired(
377
+ 'You must import your Tailwind stylesheet, e.g. in a shared layout:\n',
378
+ ),
379
+ );
380
logger.info('SKIP_FORMAT', code + '\n');
381
}
382
0 commit comments