elk/nuxt.config.ts

153 lines
3.5 KiB
TypeScript
Raw Normal View History

import { createResolver } from '@nuxt/kit'
2022-11-27 06:54:56 +00:00
import Inspect from 'vite-plugin-inspect'
2022-12-18 00:15:19 +00:00
import { isCI, isDevelopment } from 'std-env'
import { i18n } from './config/i18n'
import { pwa } from './config/pwa'
2023-01-04 13:26:30 +00:00
import { isPreview } from './config/env'
const { resolve } = createResolver(import.meta.url)
2022-11-13 05:34:43 +00:00
export default defineNuxtConfig({
typescript: {
tsConfig: {
exclude: ['../service-worker'],
vueCompilerOptions: {
jsxTemplates: true,
experimentalRfc436: true,
},
},
},
2022-11-13 05:34:43 +00:00
modules: [
'@vueuse/nuxt',
'@unocss/nuxt',
'@pinia/nuxt',
'@vue-macros/nuxt',
2022-11-28 10:24:05 +00:00
'@nuxtjs/i18n',
'@nuxtjs/color-mode',
'~/modules/purge-comments',
'~/modules/setup-components',
2022-12-26 19:33:19 +00:00
'~/modules/build-info',
'~/modules/pwa/index', // change to '@vite-pwa/nuxt' once released and remove pwa module
'~/modules/tauri/index',
2022-11-13 05:34:43 +00:00
],
experimental: {
payloadExtraction: false,
2022-11-13 05:34:43 +00:00
reactivityTransform: true,
inlineSSRStyles: false,
},
css: [
'@unocss/reset/tailwind.css',
2022-11-24 13:34:35 +00:00
'floating-vue/dist/style.css',
2022-11-13 16:05:32 +00:00
'~/styles/vars.css',
2022-11-15 16:39:25 +00:00
'~/styles/global.css',
'~/styles/tiptap.css',
2022-11-24 13:34:35 +00:00
'~/styles/dropdown.css',
2022-11-13 05:34:43 +00:00
],
2022-11-14 03:45:20 +00:00
alias: {
2022-12-21 01:06:39 +00:00
'querystring': 'rollup-plugin-node-polyfills/polyfills/qs',
'change-case': 'scule',
2022-11-14 03:45:20 +00:00
},
imports: {
dirs: [
'./composables/masto',
'./composables/push-notifications',
'./composables/settings',
'./composables/tiptap',
],
},
2022-11-15 17:14:10 +00:00
vite: {
define: {
2022-11-24 03:42:03 +00:00
'process.env.VSCODE_TEXTMATE_DEBUG': 'false',
2022-12-11 23:18:09 +00:00
'process.mock': ((!isCI || isPreview) && process.env.MOCK_USER) || 'false',
2022-11-15 17:14:10 +00:00
},
2022-11-22 23:27:01 +00:00
build: {
target: 'esnext',
2022-11-22 23:27:01 +00:00
},
2022-11-27 06:54:56 +00:00
plugins: [
Inspect(),
],
2022-11-15 17:14:10 +00:00
},
2022-11-14 03:33:09 +00:00
postcss: {
plugins: {
'postcss-nested': {},
},
},
2022-11-15 15:54:58 +00:00
runtimeConfig: {
deployUrl: !isCI
? 'http://localhost:5314'
: isPreview
? process.env.DEPLOY_PRIME_URL
: 'https://elk.zone',
cloudflare: {
accountId: '',
namespaceId: '',
apiToken: '',
},
discord: {
inviteUrl: 'https://chat.elk.zone',
},
github: {
// oauth flow
clientId: '',
clientSecret: '',
inviteToken: '',
},
public: {
2023-01-04 13:26:30 +00:00
env: '', // set in build-info module
2022-12-18 00:15:19 +00:00
pwaEnabled: !isDevelopment || process.env.VITE_DEV_PWA === 'true',
translateApi: '',
defaultServer: 'mas.to',
},
storage: {
driver: isCI ? 'cloudflare' : 'fs',
2022-11-30 21:28:55 +00:00
fsBase: 'node_modules/.cache/servers',
},
2022-11-15 15:54:58 +00:00
},
routeRules: {
2022-12-28 15:17:37 +00:00
'/api/list-servers': { swr: true },
'/manifest.webmanifest': {
headers: {
'Content-Type': 'application/manifest+json',
},
},
},
nitro: {
publicAssets: [
...(!isCI || isPreview ? [{ dir: resolve('./public-dev') }] : []),
],
prerender: {
crawlLinks: false,
routes: ['/'],
},
},
app: {
keepalive: true,
head: {
// Prevent arbitrary zooming on mobile devices
viewport: 'width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover',
bodyAttrs: {
class: 'overflow-x-hidden',
},
link: [
{ rel: 'icon', href: '/favicon.ico', sizes: 'any' },
{ rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
],
2023-01-01 22:03:25 +00:00
meta: [
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' },
],
},
},
colorMode: { classSuffix: '' },
i18n,
pwa,
2022-11-13 05:34:43 +00:00
})
declare global {
namespace NodeJS {
interface Process {
mock?: Record<string, any>
}
}
}