We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以下のような設定を行った。
// nuxt.config.ts import { createResolver } from "nuxt/kit"; const { resolve } = createResolver(import.meta.url); export default defineNuxtConfig({ // ... other options pandacss: { include: [ resolve(`./src/components/**/*.{vue,ts,tsx}`), resolve(`./src/layouts/**/*.{vue,ts,tsx}`), resolve(`./src/pages/**/*.vue`), ], exclude: [], }, });
すると以下のような出力結果となった。
// .nuxt/panda.config.mjs import { defineConfig } from "@pandacss/dev" export default defineConfig({ "preflight": true, "include": [ "/{...}/src/components/**/*.{vue,ts,tsx}", "/{...}/src/layouts/**/*.{vue,ts,tsx}", "/{...}/src/pages/**/*.vue", "/{...}/src/components/**/*.{js,jsx,ts,tsx,vue}", "/{...}/src/pages/**/*.{js,jsx,ts,tsx,vue}" ], "exclude": [], "outdir": "styled-system", "cwd": "/{...}/src/.nuxt", "cssPath": "/{...}/src/.nuxt/panda.css", })
/pagesや/componentsは上書きされている想定だった。実際には違った。
/pages
/components
The text was updated successfully, but these errors were encountered:
includeは監視オプションであることを踏まえると、上書きされる方が適切かと思ってる。
include
https://panda-css.com/docs/references/config#include
Sorry, something went wrong.
shinGangan
No branches or pull requests
内容
以下のような設定を行った。
すると以下のような出力結果となった。
/pages
や/components
は上書きされている想定だった。実際には違った。The text was updated successfully, but these errors were encountered: