hydrator test

This commit is contained in:
Karol Wypchlo 2021-02-09 11:22:23 +01:00
parent a3c100c989
commit b6753ec34c
3 changed files with 10 additions and 4 deletions

View File

@ -1,7 +1,7 @@
- id: "ory:kratos:public"
upstream:
preserve_host: true
url: "http://accounts:3000/kratos"
url: "http://kratos:4433"
strip_path: /.ory/kratos/public
match:
url: "http://oathkeeper:4455/.ory/kratos/public/<**>"

View File

@ -10,6 +10,7 @@
"dependencies": {
"@fontsource/metropolis": "^4.1.0",
"@ory/kratos-client": "^0.5.4-alpha.1",
"@tailwindcss/forms": "^0.2.1",
"autoprefixer": "^10.2.4",
"dayjs": "^1.10.4",
"express-jwt": "^6.0.0",
@ -22,7 +23,10 @@
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "^0.4.1",
"tailwindcss": "^2.0.2",
"tailwindcss": "^2.0.3",
"yup": "^0.32.8"
},
"devDependencies": {
"@tailwindcss/forms": "^0.2.1"
}
}

View File

@ -9,12 +9,14 @@ module.exports = {
sans: ["Metropolis", "Helvetica", "Arial", "Sans-Serif"],
},
colors: {
orange: colors.green,
orange: colors.orange,
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
plugins: [
// require("@tailwindcss/forms")
],
};