2022-12-08 13:50:44 +03:00
|
|
|
import { fileURLToPath } from 'node:url'
|
2022-11-27 09:54:56 +03:00
|
|
|
import Inspect from 'vite-plugin-inspect'
|
2022-11-29 12:43:01 +03:00
|
|
|
import { isCI, isDevelopment } from 'std-env'
|
2022-12-07 00:04:38 +03:00
|
|
|
import { i18n } from './config/i18n'
|
2022-12-02 15:54:09 +03:00
|
|
|
|
2022-12-08 13:50:44 +03:00
|
|
|
const isPreview = process.env.PULL_REQUEST === 'true'
|
|
|
|
|
2022-11-13 08:34:43 +03:00
|
|
|
export default defineNuxtConfig({
|
2022-11-23 02:08:36 +03:00
|
|
|
ssr: false,
|
2022-11-13 08:34:43 +03:00
|
|
|
modules: [
|
|
|
|
'@vueuse/nuxt',
|
|
|
|
'@unocss/nuxt',
|
|
|
|
'@pinia/nuxt',
|
2022-11-23 11:07:28 +03:00
|
|
|
'@vue-macros/nuxt',
|
2022-11-28 13:24:05 +03:00
|
|
|
'@nuxtjs/i18n',
|
2022-11-25 17:42:26 +03:00
|
|
|
'~/modules/purge-comments',
|
2022-11-25 19:08:30 +03:00
|
|
|
'~/modules/setup-components',
|
2022-11-13 08:34:43 +03:00
|
|
|
],
|
|
|
|
experimental: {
|
|
|
|
reactivityTransform: true,
|
|
|
|
inlineSSRStyles: false,
|
|
|
|
},
|
|
|
|
css: [
|
|
|
|
'@unocss/reset/tailwind.css',
|
2022-11-24 16:34:35 +03:00
|
|
|
'floating-vue/dist/style.css',
|
2022-11-13 19:05:32 +03:00
|
|
|
'~/styles/vars.css',
|
2022-11-15 19:39:25 +03:00
|
|
|
'~/styles/global.css',
|
2022-11-25 16:21:02 +03:00
|
|
|
'~/styles/tiptap.css',
|
2022-11-24 16:34:35 +03:00
|
|
|
'~/styles/dropdown.css',
|
2022-11-13 08:34:43 +03:00
|
|
|
],
|
2022-11-14 06:45:20 +03:00
|
|
|
alias: {
|
|
|
|
querystring: 'rollup-plugin-node-polyfills/polyfills/qs',
|
|
|
|
},
|
2022-11-15 20:14:10 +03:00
|
|
|
vite: {
|
|
|
|
define: {
|
2022-11-27 11:54:00 +03:00
|
|
|
'import.meta.env.__BUILD_TIME__': JSON.stringify(new Date().toISOString()),
|
2022-12-04 21:18:39 +03:00
|
|
|
'import.meta.env.__BUILD_COMMIT__': JSON.stringify(process.env.COMMIT_REF || ''),
|
2022-11-24 06:42:03 +03:00
|
|
|
'process.env.VSCODE_TEXTMATE_DEBUG': 'false',
|
2022-11-29 12:43:01 +03:00
|
|
|
'process.mock': ((isDevelopment || (isCI && process.env.PULL_REQUEST === 'true')) && process.env.MOCK_USER) || 'false',
|
2022-11-15 20:14:10 +03:00
|
|
|
},
|
2022-11-23 02:27:01 +03:00
|
|
|
build: {
|
|
|
|
target: 'esnext',
|
|
|
|
},
|
2022-11-27 09:54:56 +03:00
|
|
|
plugins: [
|
|
|
|
Inspect(),
|
|
|
|
],
|
2022-11-15 20:14:10 +03:00
|
|
|
},
|
2022-11-14 06:33:09 +03:00
|
|
|
postcss: {
|
|
|
|
plugins: {
|
|
|
|
'postcss-nested': {},
|
|
|
|
},
|
|
|
|
},
|
2022-11-15 18:54:58 +03:00
|
|
|
runtimeConfig: {
|
2022-12-08 16:04:58 +03:00
|
|
|
deployUrl: !isCI
|
2022-11-29 00:43:24 +03:00
|
|
|
? 'http://localhost:5314'
|
2022-12-08 13:50:44 +03:00
|
|
|
: isPreview
|
2022-11-29 00:43:24 +03:00
|
|
|
? process.env.DEPLOY_PRIME_URL
|
|
|
|
: 'https://elk.zone',
|
2022-11-24 02:12:25 +03:00
|
|
|
cloudflare: {
|
|
|
|
accountId: '',
|
|
|
|
namespaceId: '',
|
|
|
|
apiToken: '',
|
|
|
|
},
|
2022-11-25 03:14:16 +03:00
|
|
|
public: {
|
2022-12-08 13:50:44 +03:00
|
|
|
env: isCI ? isPreview ? 'staging' : 'production' : 'local',
|
2022-11-25 03:14:16 +03:00
|
|
|
translateApi: '',
|
2022-12-01 00:28:55 +03:00
|
|
|
// Masto uses Mastodon version checks to see what features are enabled.
|
|
|
|
// Mastodon alternatives like GoToSocial will always fail these checks, so
|
|
|
|
// provide a way to disable them.
|
|
|
|
disableVersionCheck: false,
|
2022-11-25 03:14:16 +03:00
|
|
|
},
|
2022-12-01 00:17:20 +03:00
|
|
|
storage: {
|
2022-12-07 00:09:47 +03:00
|
|
|
driver: isCI ? 'cloudflare' : 'fs',
|
2022-12-01 00:28:55 +03:00
|
|
|
fsBase: 'node_modules/.cache/servers',
|
2022-12-01 00:17:20 +03:00
|
|
|
},
|
2022-11-15 18:54:58 +03:00
|
|
|
},
|
2022-11-28 12:01:14 +03:00
|
|
|
nitro: {
|
2022-12-08 13:50:44 +03:00
|
|
|
publicAssets: [
|
2022-12-08 16:24:36 +03:00
|
|
|
...(!isCI || isPreview ? [{ dir: fileURLToPath(new URL('./public-dev', import.meta.url)) }] : []),
|
2022-12-08 13:50:44 +03:00
|
|
|
],
|
2022-11-28 12:01:14 +03:00
|
|
|
prerender: {
|
|
|
|
crawlLinks: false,
|
2022-11-28 19:54:42 +03:00
|
|
|
routes: ['/', '/200.html'],
|
2022-11-28 12:01:14 +03:00
|
|
|
},
|
|
|
|
},
|
2022-11-27 20:34:45 +03:00
|
|
|
app: {
|
|
|
|
keepalive: true,
|
2022-11-29 19:27:35 +03:00
|
|
|
head: {
|
|
|
|
// Prevent arbitrary zooming on mobile devices
|
|
|
|
viewport: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no',
|
2022-12-08 13:50:44 +03:00
|
|
|
bodyAttrs: {
|
|
|
|
class: 'overflow-x-hidden',
|
|
|
|
},
|
|
|
|
link: [
|
|
|
|
{ rel: 'icon', type: 'image/png', href: '/favicon.png' },
|
|
|
|
{ rel: 'alternate icon', type: 'image/x-icon', href: '/favicon.ico' },
|
|
|
|
{ rel: 'icon', type: 'image/png', href: '/favicon-16x16.png', sizes: '16x16' },
|
|
|
|
{ rel: 'icon', type: 'image/png', href: '/favicon-32x32.png', sizes: '32x32' },
|
|
|
|
],
|
2022-11-29 19:27:35 +03:00
|
|
|
},
|
2022-11-27 20:34:45 +03:00
|
|
|
},
|
2022-12-02 15:54:09 +03:00
|
|
|
i18n,
|
2022-11-13 08:34:43 +03:00
|
|
|
})
|
2022-11-29 09:39:49 +03:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace NodeJS {
|
|
|
|
interface Process {
|
|
|
|
mock?: Record<string, any>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|