Configuration

Edit this page on GitHub

Svemix let's you configure some things like the default SEO / Meta Data. There will probably be more configurable things in the future.

Examplepermalink

svelte.config.js
ts
/** @type {import('svemix').SvemixConfig} */
const config = {
//...
svemix: {
seo: {
title: '',
description: '',
keywords: '',
openGraph: {
title: '',
description: ''
// etc.
},
twitter: {
site: '',
title: ''
}
// etc.
}
},
};
 
export default config;