@mintlify/previewing 4.0.583 → 4.0.585

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,19 +8,6 @@ import { maybeFixMissingWindowsEnvVar } from '../util.js';
8
8
  import listener from './listener/index.js';
9
9
  import { setupNext } from './setupNext.js';
10
10
  export const run = async (argv) => {
11
- // Ignore tailwind warnings
12
- const ignoredMessages = [
13
- 'No utility classes were detected',
14
- 'https://tailwindcss.com/docs/content-configuration',
15
- ];
16
- const originalConsoleWarn = console.warn;
17
- console.warn = (...args) => {
18
- const message = args.join(' ');
19
- if (ignoredMessages.some((ignoredMessage) => message.includes(ignoredMessage))) {
20
- return;
21
- }
22
- originalConsoleWarn.apply(console, args);
23
- };
24
11
  const port = argv.port || '3000';
25
12
  const currentPort = parseInt(port, 10) || 3000;
26
13
  const app = express();