fix prettier config import error

This commit is contained in:
Kim, Jimin 2025-03-20 09:44:08 +09:00
parent ca9817102f
commit d96a9f52c9
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 7 additions and 5 deletions

View file

@ -1,5 +0,0 @@
/** @type {import("prettier").Options} */
export default {
...import("@pompydev/prettier-config"),
plugins: ["prettier-plugin-tailwindcss"],
}

7
apps/list/.prettierrc.js Normal file
View file

@ -0,0 +1,7 @@
import pompydevPrettierConfig from "@pompydev/prettier-config" with { type: "json" }
/** @type {import("prettier").Options} */
export default {
...pompydevPrettierConfig,
plugins: ["prettier-plugin-tailwindcss"],
}