15 lines
484 B
CSS
15 lines
484 B
CSS
/* src/index.css */
|
|
|
|
/*
|
|
This single directive replaces @tailwind base, components, and utilities.
|
|
It is the new entry point for all of Tailwind's generated CSS.
|
|
*/
|
|
@import 'tailwindcss';
|
|
|
|
/*
|
|
This is the new v4 directive that tells the @tailwindcss/postcss plugin
|
|
where to find the configuration file. The path is relative to this CSS file.
|
|
Since tailwind.config.js is in the root and this is in src/, the path is '../tailwind.config.js'.
|
|
*/
|
|
@config '../tailwind.config.js';
|