Skip to content

chore: properly resolve ory:// in config editor #2197

New issue

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

Merged
merged 7 commits into from
Jun 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/polis/guides/frameworks/remix.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ export default function Error() {

return (
<div className="h-full">
<div className="h-[20%] translate-y-[100%] px-[20%] text-[hsl(152,56%,40%)]">
<div className="h-[20%] translate-y-full px-[20%] text-[hsl(152,56%,40%)]">
<svg className="mb-5 h-10 w-10" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={2}>
<path strokeLinecap="round" strokeLinejoin="round" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
Expand Down
20 changes: 10 additions & 10 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ const config: Config = {
// buttonPosition: "center-right",
// },
// ],
async function tailwindcss(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
// Use the new PostCSS plugin for Tailwind CSS
postcssOptions.plugins.push(require("@tailwindcss/postcss"))
return postcssOptions
},
}
},
[
"@docusaurus/plugin-content-docs",
{
Expand Down Expand Up @@ -178,16 +188,6 @@ const config: Config = {
svgrConfig: {},
},
],
async function tailwindcss(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
// Use the new PostCSS plugin for Tailwind CSS
postcssOptions.plugins.push(require("@tailwindcss/postcss"))
return postcssOptions
},
}
},
],
presets: [
[
Expand Down
Loading
Loading