Cherry-picked from upstream PR #1129 + local improvements: - dedupe inline remove-model handler -> use handleRemoveModel - add .next-cli-build/ and cli/.build-home/ to .gitignore
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const projectRoot = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
export default {
|
|
plugins: {
|
|
"@tailwindcss/postcss": {
|
|
base: projectRoot,
|
|
},
|
|
},
|
|
};
|