mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- Updated next.config.ts to pin Turbopack root to the app directory for better workspace management. - Modified package.json scripts to use Webpack during development and build processes. - Refactored postcss.config.mjs to set the base path for Tailwind CSS. - Replaced CSS imports in globals.css with Tailwind directives for better styling management. - Introduced RotatingTetrahedronCanvas component for dynamic visual effects on the Welcome page. - Revamped Welcome page layout to include the new canvas and improve overall design and user engagement.
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
import path from 'path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const landerRoot = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
const config = {
|
|
plugins: {
|
|
'@tailwindcss/postcss': {
|
|
base: landerRoot,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|