16 lines
337 B
JavaScript
16 lines
337 B
JavaScript
// The Lucia project.
|
|
// Copyright 2023-2026 DSP, inc. All rights reserved.
|
|
// Authors:
|
|
// chiayin.kuo@dsp.im (chiayin), 2023/1/31
|
|
// imacat.yang@dsp.im (imacat), 2026/3/6
|
|
/**
|
|
* @module postcss.config
|
|
* PostCSS configuration with Tailwind CSS plugin.
|
|
*/
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {},
|
|
},
|
|
};
|