Build Error
Package subpath './ui/tailwind.config' is not defined by "exports" in C:\Users\noush\Desktop\node_modules\shadcn\package.json
./app/globals.css.webpack[javascript/auto]!=!./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css
Error: Package subpath './ui/tailwind.config' is not defined by "exports" in C:\Users\noush\Desktop\node_modules\shadcn\package.json
Next.js version: 15.5.4 (Webpack)
I found the issue! The globals.css is trying to import 'tw-animate-css' which doesn't exist. Let me fix this:
The issue was a non-existent import. The error about shadcn's tailwind.config was a secondary issue caused by this bad import. Your build should now work. Try running pnpm dev again and it should compile successfully!
You're right! Let me help you verify everything is working properly on your local machine. Let me create a simple step-by-step guide to get the dashboard UI running in VS Code:
Now follow these steps in VS Code:
Terminal 1 - Start the Dashboard:
pnpm install
pnpm devThen open: http://localhost:3000/qa
You should see the dashboard UI with a form and empty test history.
Terminal 2 - Run Your First Test (wait for Terminal 1 to show "Local: http://localhost:3000" first):
cd qa_bot
uv run main.py --url http://localhost:3000Then refresh http://localhost:3000/qa and you'll see the test results appear!
Dashboard (http://localhost:3000/qa):
After running a test:
Let me know once you:
pnpm install successfullypnpm dev and see the server startThen we can test it fully!
You can send messages while the preview loads