Files
openhuman/lander/postcss.config.mjs
T
Steven Enamakel 703deba688 feat: enhance landing page and configuration for improved user experience
- 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.
2026-03-19 23:10:18 -07:00

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;