hydrator test
This commit is contained in:
parent
a3c100c989
commit
b6753ec34c
|
@ -1,7 +1,7 @@
|
||||||
- id: "ory:kratos:public"
|
- id: "ory:kratos:public"
|
||||||
upstream:
|
upstream:
|
||||||
preserve_host: true
|
preserve_host: true
|
||||||
url: "http://accounts:3000/kratos"
|
url: "http://kratos:4433"
|
||||||
strip_path: /.ory/kratos/public
|
strip_path: /.ory/kratos/public
|
||||||
match:
|
match:
|
||||||
url: "http://oathkeeper:4455/.ory/kratos/public/<**>"
|
url: "http://oathkeeper:4455/.ory/kratos/public/<**>"
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fontsource/metropolis": "^4.1.0",
|
"@fontsource/metropolis": "^4.1.0",
|
||||||
"@ory/kratos-client": "^0.5.4-alpha.1",
|
"@ory/kratos-client": "^0.5.4-alpha.1",
|
||||||
|
"@tailwindcss/forms": "^0.2.1",
|
||||||
"autoprefixer": "^10.2.4",
|
"autoprefixer": "^10.2.4",
|
||||||
"dayjs": "^1.10.4",
|
"dayjs": "^1.10.4",
|
||||||
"express-jwt": "^6.0.0",
|
"express-jwt": "^6.0.0",
|
||||||
|
@ -22,7 +23,10 @@
|
||||||
"react": "17.0.1",
|
"react": "17.0.1",
|
||||||
"react-dom": "17.0.1",
|
"react-dom": "17.0.1",
|
||||||
"swr": "^0.4.1",
|
"swr": "^0.4.1",
|
||||||
"tailwindcss": "^2.0.2",
|
"tailwindcss": "^2.0.3",
|
||||||
"yup": "^0.32.8"
|
"yup": "^0.32.8"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@tailwindcss/forms": "^0.2.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,12 +9,14 @@ module.exports = {
|
||||||
sans: ["Metropolis", "Helvetica", "Arial", "Sans-Serif"],
|
sans: ["Metropolis", "Helvetica", "Arial", "Sans-Serif"],
|
||||||
},
|
},
|
||||||
colors: {
|
colors: {
|
||||||
orange: colors.green,
|
orange: colors.orange,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
variants: {
|
variants: {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
plugins: [require("@tailwindcss/forms")],
|
plugins: [
|
||||||
|
// require("@tailwindcss/forms")
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
Reference in New Issue