chore: add and run prettier

This commit is contained in:
Michael Zetterberg
2024-03-26 13:02:26 +01:00
parent e9349992f8
commit 083c57d0ca
27 changed files with 430 additions and 379 deletions

View File

@@ -1,15 +1,15 @@
import type { MetaFunction } from '@remix-run/node';
import type { MetaFunction } from "@remix-run/node"
export const meta: MetaFunction = () => {
return [
{ title: 'DAM: ImageVault integration' },
{ title: "DAM: ImageVault integration" },
{
name: 'description',
content: 'Integration of ImageVault as a DAM for Contentstack',
name: "description",
content: "Integration of ImageVault as a DAM for Contentstack",
},
];
};
]
}
export default function Index() {
return null;
return null
}