2022-12-08 10:50:44 +00:00
|
|
|
import { fileURLToPath } from 'node:url'
|
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'
|
2022-12-06 21:04:38 +00:00
|
|
|
import { i18n } from './config/i18n'
|
2022-12-17 23:29:16 +00:00
|
|
|
import { pwa } from './config/pwa'
|
2022-12-02 12:54:09 +00:00
|
|
|
|
2022-12-19 22:37:23 +00:00
|
|
|
const isPreview = process.env.PULL_REQUEST === 'true' || process.env.CONTEXT === 'deploy-preview' || process.env.CONTEXT === 'dev'
|
2022-12-08 10:50:44 +00:00
|
|
|
|
2022-11-13 05:34:43 +00:00
|
|
|
export default defineNuxtConfig({
|
2022-12-17 23:29:16 +00:00
|
|
|
typescript: {
|
|
|
|
tsConfig: {
|
|
|
|
exclude: ['../service-worker'],
|
|
|
|
},
|
|
|
|
},
|
2022-11-13 05:34:43 +00:00
|
|
|
modules: [
|
|
|
|
'@vueuse/nuxt',
|
|
|
|
'@unocss/nuxt',
|
|
|
|
'@pinia/nuxt',
|
2022-11-23 08:07:28 +00:00
|
|
|
'@vue-macros/nuxt',
|
2022-11-28 10:24:05 +00:00
|
|
|
'@nuxtjs/i18n',
|
2022-11-25 14:42:26 +00:00
|
|
|
'~/modules/purge-comments',
|
2022-11-25 16:08:30 +00:00
|
|
|
'~/modules/setup-components',
|
2022-12-17 23:29:16 +00:00
|
|
|
'~/modules/pwa/index', // change to '@vite-pwa/nuxt' once released and remove pwa module
|
2022-12-20 23:56:57 +00:00
|
|
|
'~/modules/tauri/index',
|
2022-11-13 05:34:43 +00:00
|
|
|
],
|
|
|
|
experimental: {
|
2022-12-20 23:56:57 +00:00
|
|
|
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',
|
2022-11-25 13:21:02 +00:00
|
|
|
'~/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',
|
|
|
|
'masto/fetch': 'masto/fetch',
|
|
|
|
'masto': 'masto/fetch',
|
2022-12-22 14:22:56 +00:00
|
|
|
'change-case': 'scule',
|
|
|
|
'semver': 'unenv/runtime/mock/empty',
|
2022-11-14 03:45:20 +00:00
|
|
|
},
|
2022-11-15 17:14:10 +00:00
|
|
|
vite: {
|
|
|
|
define: {
|
2022-11-27 08:54:00 +00:00
|
|
|
'import.meta.env.__BUILD_TIME__': JSON.stringify(new Date().toISOString()),
|
2022-12-04 18:18:39 +00:00
|
|
|
'import.meta.env.__BUILD_COMMIT__': JSON.stringify(process.env.COMMIT_REF || ''),
|
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: {
|
2022-12-20 23:56:57 +00:00
|
|
|
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: {
|
2022-12-08 13:04:58 +00:00
|
|
|
deployUrl: !isCI
|
2022-11-28 21:43:24 +00:00
|
|
|
? 'http://localhost:5314'
|
2022-12-08 10:50:44 +00:00
|
|
|
: isPreview
|
2022-11-28 21:43:24 +00:00
|
|
|
? process.env.DEPLOY_PRIME_URL
|
|
|
|
: 'https://elk.zone',
|
2022-11-23 23:12:25 +00:00
|
|
|
cloudflare: {
|
|
|
|
accountId: '',
|
|
|
|
namespaceId: '',
|
|
|
|
apiToken: '',
|
|
|
|
},
|
2022-12-20 22:39:04 +00:00
|
|
|
discord: {
|
|
|
|
inviteUrl: 'https://chat.elk.zone',
|
|
|
|
},
|
|
|
|
github: {
|
|
|
|
// oauth flow
|
|
|
|
clientId: '',
|
|
|
|
clientSecret: '',
|
|
|
|
inviteToken: '',
|
|
|
|
},
|
2022-11-25 00:14:16 +00:00
|
|
|
public: {
|
2022-12-08 10:50:44 +00:00
|
|
|
env: isCI ? isPreview ? 'staging' : 'production' : 'local',
|
2022-12-18 00:15:19 +00:00
|
|
|
pwaEnabled: !isDevelopment || process.env.VITE_DEV_PWA === 'true',
|
2022-11-25 00:14:16 +00:00
|
|
|
translateApi: '',
|
|
|
|
},
|
2022-11-30 21:17:20 +00:00
|
|
|
storage: {
|
2022-12-06 21:09:47 +00:00
|
|
|
driver: isCI ? 'cloudflare' : 'fs',
|
2022-11-30 21:28:55 +00:00
|
|
|
fsBase: 'node_modules/.cache/servers',
|
2022-11-30 21:17:20 +00:00
|
|
|
},
|
2022-11-15 15:54:58 +00:00
|
|
|
},
|
2022-12-17 23:29:16 +00:00
|
|
|
routeRules: {
|
|
|
|
'/manifest.webmanifest': {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/manifest+json',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-11-28 09:01:14 +00:00
|
|
|
nitro: {
|
2022-12-08 10:50:44 +00:00
|
|
|
publicAssets: [
|
2022-12-08 13:24:36 +00:00
|
|
|
...(!isCI || isPreview ? [{ dir: fileURLToPath(new URL('./public-dev', import.meta.url)) }] : []),
|
2022-12-08 10:50:44 +00:00
|
|
|
],
|
2022-11-28 09:01:14 +00:00
|
|
|
prerender: {
|
|
|
|
crawlLinks: false,
|
2022-11-28 16:54:42 +00:00
|
|
|
routes: ['/', '/200.html'],
|
2022-11-28 09:01:14 +00:00
|
|
|
},
|
2022-12-24 00:07:38 +00:00
|
|
|
routeRules: {
|
|
|
|
'/list-servers': { swr: true },
|
|
|
|
},
|
2022-11-28 09:01:14 +00:00
|
|
|
},
|
2022-11-27 17:34:45 +00:00
|
|
|
app: {
|
|
|
|
keepalive: true,
|
2022-11-29 16:27:35 +00:00
|
|
|
head: {
|
|
|
|
// Prevent arbitrary zooming on mobile devices
|
2022-12-13 08:41:24 +00:00
|
|
|
viewport: 'width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover',
|
2022-12-08 10:50:44 +00:00
|
|
|
bodyAttrs: {
|
|
|
|
class: 'overflow-x-hidden',
|
|
|
|
},
|
|
|
|
link: [
|
2022-12-19 22:37:23 +00:00
|
|
|
{ rel: 'icon', href: '/favicon.ico', sizes: 'any' },
|
|
|
|
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
|
|
|
|
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
|
2022-12-08 10:50:44 +00:00
|
|
|
],
|
2022-11-29 16:27:35 +00:00
|
|
|
},
|
2022-11-27 17:34:45 +00:00
|
|
|
},
|
2022-12-02 12:54:09 +00:00
|
|
|
i18n,
|
2022-12-17 23:29:16 +00:00
|
|
|
pwa,
|
2022-11-13 05:34:43 +00:00
|
|
|
})
|
2022-11-29 06:39:49 +00:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace NodeJS {
|
|
|
|
interface Process {
|
|
|
|
mock?: Record<string, any>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|