2026-06-08 17:12:14 +08:00
|
|
|
/**
|
|
|
|
|
* Legacy PostCSS is configured inline in vite.legacy.config.ts (same as x8).
|
|
|
|
|
* This file is kept for reference / tooling that expects a postcss config path.
|
|
|
|
|
*/
|
|
|
|
|
const path = require("node:path");
|
2026-06-03 15:42:58 +08:00
|
|
|
const tailwindcss3 = require("tailwindcss3");
|
|
|
|
|
const autoprefixer = require("autoprefixer");
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2026-06-08 17:12:14 +08:00
|
|
|
plugins: [
|
|
|
|
|
tailwindcss3({ config: path.join(__dirname, "tailwind.legacy.config.cjs") }),
|
|
|
|
|
autoprefixer(),
|
|
|
|
|
],
|
2026-06-03 15:42:58 +08:00
|
|
|
};
|