mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-08 17:34:27 +08:00
13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
import postcssImport from 'postcss-import';
|
|
import tailwindcss from 'tailwindcss';
|
|
import postcssNesting from 'tailwindcss/nesting/index.js';
|
|
|
|
/** @type {import('postcss-load-config').Config} */
|
|
export default {
|
|
plugins: {
|
|
'postcss-import': postcssImport, // to combine multiple css files
|
|
'tailwindcss/nesting': postcssNesting,
|
|
tailwindcss: tailwindcss,
|
|
},
|
|
};
|