33 lines
927 B
TypeScript
33 lines
927 B
TypeScript
// https://v3.nuxtjs.org/api/configuration/nuxt.config
|
|
export default defineNuxtConfig({
|
|
css: ['@/assets/styles/index.scss'],
|
|
vite: {
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
additionalData: '@use "@/assets/styles/_variables.scss" as *;',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
app: {
|
|
head: {
|
|
charset: 'utf-8',
|
|
viewport: 'width=device-width, initial-scale=1.0',
|
|
title: 'lunasqu.ee',
|
|
meta: [
|
|
{ name: 'description', content: "Evert Prants' personal website" },
|
|
{
|
|
name: 'keywords',
|
|
content:
|
|
'evert,lunasquee,lunasqu,evert prants website,evert prants koduleht,evert prants homepage,evert official,portfolio,portfoolio,projects,projektid',
|
|
},
|
|
],
|
|
link: [
|
|
{ rel: 'me', href: 'https://social.lunasqu.ee/diamond' },
|
|
{ rel: 'me', href: 'https://fosstodon.org/@evertprants' },
|
|
],
|
|
},
|
|
},
|
|
});
|