6 lines
192 B
JavaScript
6 lines
192 B
JavaScript
|
const configPath = require.resolve('./src/styles/tailwind.config.ts');
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: ['postcss-import', 'tailwindcss/nesting', ['tailwindcss', configPath], 'autoprefixer'],
|
||
|
};
|