mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-08 05:35:03 +02:00
🧹 chore(clean): whole src files
This commit is contained in:
@@ -1,87 +0,0 @@
|
||||
const config = require('./developer.json')
|
||||
const siteTitle = `${config.name} | ${config.role}`
|
||||
|
||||
|
||||
/*
|
||||
* Nuxt 3 Config File
|
||||
Usage: https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
*/
|
||||
export default defineNuxtConfig({
|
||||
|
||||
/**
|
||||
* * App Config
|
||||
* app config: https://nuxt.com/docs/api/configuration/nuxt-config#app
|
||||
* head config: https://nuxt.com/docs/api/configuration/nuxt-config#head
|
||||
* meta config: https://nuxt.com/docs/getting-started/seo-meta
|
||||
* pageTransition config: https://nuxt.com/docs/getting-started/transitions#transitions
|
||||
* TODO: Add more meta tags for SEO
|
||||
* TODO: Add tags for social media sharing
|
||||
* TODO: Migrate apple-touch-icon config to manifest.json
|
||||
*/
|
||||
app: {
|
||||
baseURL: '/',
|
||||
head: {
|
||||
title: siteTitle, // App window nav title
|
||||
meta: [
|
||||
{ charset: 'utf-8' },
|
||||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||||
{ hid: 'description', name: 'description', content: 'Snigdha OS on the web.' },
|
||||
{ hid: 'og:title', property: 'og:title', content: siteTitle },
|
||||
{ hid: 'og:description', property: 'og:description', content: 'Snigdha OS on the web.' },
|
||||
{ hid: 'og:image', property: 'og:image', content: 'snigdhaos-view.png' },
|
||||
{ hid: 'og:url', property: 'og:url', content: 'https://snigdhaos.org/' },
|
||||
{ name: 'theme-color', content: '#010C15' },
|
||||
// ...
|
||||
],
|
||||
link: [
|
||||
{ rel: 'manifest', href: 'pwa/manifest.json' },
|
||||
{ rel: 'apple-touch-icon', href: 'pwa/icons/apple-touch-icon.png' },
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
// router: {
|
||||
// base: '/',
|
||||
// },
|
||||
|
||||
/**
|
||||
* * Nuxt 3 Modules
|
||||
* Official modules: https://nuxt.com/modules
|
||||
*/
|
||||
modules: [
|
||||
'@nuxtjs/tailwindcss',
|
||||
],
|
||||
|
||||
components: {
|
||||
dirs: [
|
||||
'~/components',
|
||||
],
|
||||
},
|
||||
|
||||
/**
|
||||
* * Tailwind CSS Config
|
||||
* Options: https://tailwindcss.nuxt.dev/getting-started/options/
|
||||
* Docs: https://tailwindcss.nuxt.dev
|
||||
*/
|
||||
tailwindcss: {
|
||||
cssPath: '~/assets/tailwind.css',
|
||||
configPath: 'tailwind.config',
|
||||
exposeConfig: true, // true to resolve the tailwind config in runtime. https://tailwindcss.nuxt.dev/getting-started/options/#exposeconfig
|
||||
injectPosition: 0,
|
||||
viewer: false,
|
||||
},
|
||||
|
||||
/**
|
||||
* * Runtime Config (Environment Variables)
|
||||
* Usage: https://nuxt.com/docs/guide/going-further/runtime-config
|
||||
*/
|
||||
runtimeConfig: {
|
||||
// The private keys which are only available server-side
|
||||
apiSecret: '123',
|
||||
// Keys within public are also exposed client-side
|
||||
public: {
|
||||
apiBase: '/api',
|
||||
dev: config
|
||||
}
|
||||
}
|
||||
})
|
Reference in New Issue
Block a user