Skip to content
Snippets Groups Projects
Commit 31262706 authored by OZGCloud's avatar OZGCloud
Browse files

Init panda

parent eaa2da95
Branches
Tags
No related merge requests found
...@@ -49,3 +49,4 @@ Thumbs.db ...@@ -49,3 +49,4 @@ Thumbs.db
.angular .angular
.nx .nx
styled-system
\ No newline at end of file
This diff is collapsed.
...@@ -101,6 +101,7 @@ ...@@ -101,6 +101,7 @@
"@nx/storybook": "^17.0.3", "@nx/storybook": "^17.0.3",
"@nx/web": "17.0.2", "@nx/web": "17.0.2",
"@nx/workspace": "17.0.2", "@nx/workspace": "17.0.2",
"@pandacss/dev": "^0.18.3",
"@schematics/angular": "16.2.8", "@schematics/angular": "16.2.8",
"@storybook/addon-essentials": "^7.5.1", "@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1", "@storybook/addon-interactions": "^7.5.1",
...@@ -137,6 +138,7 @@ ...@@ -137,6 +138,7 @@
"mongodb": "4.5.0", "mongodb": "4.5.0",
"ng-mocks": "^14.11.0", "ng-mocks": "^14.11.0",
"nx": "17.0.2", "nx": "17.0.2",
"postcss": "^8.4.31",
"prettier": "^2.6.2", "prettier": "^2.6.2",
"sonarqube-scanner": "3.1.0", "sonarqube-scanner": "3.1.0",
"ts-jest": "^29.1.0", "ts-jest": "^29.1.0",
......
import { defineConfig } from "@pandacss/dev";
export default defineConfig({
// Whether to use css reset
preflight: true,
// Where to look for your css declarations
include: ["./libs/ui-alfa/src/**/*.{js,jsx,ts,tsx}"],
// Files to exclude
exclude: [],
// Useful for theme customization
theme: {
extend: {},
},
// The output directory for your css system
outdir: "styled-system",
});
module.exports = {
plugins: {
'@pandacss/dev/postcss': {},
},
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment