This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/nuxt.config.js

193 lines
7.1 KiB
JavaScript
Raw Normal View History

2020-11-10 14:41:56 -08:00
import { loadSuml } from './server/loader';
2020-10-13 12:49:08 -07:00
import fs from 'fs';
2020-11-24 15:54:02 -08:00
import {buildDict, buildLocaleList} from "./src/helpers";
2020-11-10 14:41:56 -08:00
const config = loadSuml('config');
const translations = loadSuml('translations');
const locale = config.locale;
2020-11-24 15:54:02 -08:00
const locales = buildLocaleList();
const title = translations.title;
const description = translations.description;
2020-11-11 13:07:19 -08:00
const banner = process.env.BASE_URL + '/api/banner/zaimki.png';
2020-07-24 12:15:33 -07:00
const colour = '#C71585';
2020-07-22 13:19:23 -07:00
2020-08-04 07:15:41 -07:00
const bodyParser = require('body-parser');
2020-07-22 13:19:23 -07:00
export default {
target: 'server',
head: {
title: title,
meta: [
{ charset: 'utf-8' },
{ hid: 'description', name: 'description', content: description },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: title },
2020-07-24 12:15:33 -07:00
{ hid: 'theme-color', name: 'theme-color', content: colour },
2020-07-22 13:19:23 -07:00
{ hid: 'og:type', property: 'og:type', content: 'article' },
{ hid: 'og:title', property: 'og:title', content: title },
{ hid: 'og:description', property: 'og:description', content: description },
{ hid: 'og:site_name', property: 'og:site_name', content: title },
2020-11-29 09:36:57 -08:00
{ hid: 'og:image', property: 'og:image', content: banner },
2020-07-22 13:19:23 -07:00
{ hid: 'twitter:card', property: 'twitter:card', content: 'summary_large_image' },
{ hid: 'twitter:title', property: 'twitter:title', content: title },
{ hid: 'twitter:description', property: 'twitter:description', content: description },
{ hid: 'twitter:site', property: 'twitter:site', content: process.env.BASE_URL },
{ hid: 'twitter:image', property: 'twitter:image', content: banner },
],
link: [
{ rel: 'icon', type: 'image/svg', href: '/favicon.svg' }
],
},
css: [],
plugins: [
{ src: '~/plugins/vue-matomo.js', ssr: false },
2020-09-28 09:29:13 -07:00
{ src: '~/plugins/globals.js' },
{ src: '~/plugins/auth.js' },
2020-07-22 13:19:23 -07:00
],
components: true,
buildModules: [],
modules: [
'@nuxtjs/pwa',
2020-08-04 07:15:41 -07:00
'@nuxtjs/axios',
['@nuxtjs/redirect-module', {
rules: config.redirects,
}],
'cookie-universal-nuxt',
2020-07-22 13:19:23 -07:00
],
2020-07-24 12:15:33 -07:00
pwa: {
manifest: {
name: title,
short_name: title,
description: description,
background_color: '#ffffff',
theme_color: colour,
lang: locale,
2020-07-24 12:15:33 -07:00
}
},
build: {
extend (config, ctx) {
config.module.rules.push({
test: /\.csv|\.tsv$/,
loader: 'csv-loader',
options: {
dynamicTyping: true,
header: true,
skipEmptyLines: true,
delimiter: '\t',
}
2020-09-28 05:12:20 -07:00
});
config.module.rules.push({
test: /\.suml$/,
2020-11-13 13:57:23 -08:00
loader: 'suml-loader',
2020-09-28 05:12:20 -07:00
});
2020-11-13 13:57:23 -08:00
config.module.rules.push({
test: /\.md$/,
use: ['html-loader', 'markdown-loader']
})
},
},
2020-07-22 13:19:23 -07:00
env: {
2020-10-13 12:49:08 -07:00
BASE_URL: process.env.BASE_URL,
2020-10-31 13:33:59 -07:00
TITLE: title,
2020-10-13 12:49:08 -07:00
PUBLIC_KEY: fs.readFileSync(__dirname + '/keys/public.pem').toString(),
CONFIG: config,
2020-10-24 12:50:08 -07:00
LOCALE: config.locale,
LOCALES: locales,
2020-10-26 16:42:42 -07:00
FLAGS: buildDict(function *() {
for (let flag of fs.readdirSync(__dirname + '/static/flags/')) {
2020-11-23 08:18:12 -08:00
let flagDisplay = flag
.replace(new RegExp('\.png$'), '')
.replace(new RegExp('_', 'g'), '')
.trim();
2020-10-31 08:36:49 -07:00
if (flag.startsWith('.')) {
continue;
}
2020-11-23 08:18:12 -08:00
if (flag.startsWith('-')) {
const tell = '-' + config.locale + '-';
if (flag.startsWith(tell)) {
flagDisplay = flagDisplay.substring(tell.length);
} else {
continue;
}
}
2020-10-26 16:42:42 -07:00
yield [
flag.replace(new RegExp('\.png$'), ''),
2020-11-23 08:18:12 -08:00
flagDisplay,
2020-10-26 16:42:42 -07:00
];
}
}),
2020-07-22 13:19:23 -07:00
},
2020-10-31 13:33:59 -07:00
serverMiddleware: ['~/server/index.js'],
2020-08-04 07:15:41 -07:00
axios: {
2020-10-13 12:49:08 -07:00
baseURL: process.env.BASE_URL + '/api',
2020-09-28 05:12:20 -07:00
},
router: {
extendRoutes(routes, resolve) {
if (config.sources.enabled) {
routes.push({ path: '/' + config.sources.route, component: resolve(__dirname, 'routes/sources.vue') });
}
if (config.nouns.enabled) {
routes.push({ path: '/' + config.nouns.route, component: resolve(__dirname, 'routes/nouns.vue') });
}
2020-09-29 08:59:23 -07:00
if (config.names.enabled) {
routes.push({ path: '/' + config.names.route, component: resolve(__dirname, 'routes/names.vue') });
}
2020-10-10 09:31:31 -07:00
if (config.faq.enabled) {
routes.push({ path: '/' + config.faq.route, component: resolve(__dirname, 'routes/faq.vue') });
}
if (config.links.enabled) {
routes.push({ path: '/' + config.links.route, component: resolve(__dirname, 'routes/links.vue') });
2020-11-13 13:57:23 -08:00
routes.push({ path: '/' + config.links.blogRoute + '/:slug', component: resolve(__dirname, 'routes/blog.vue') });
}
2020-09-29 10:11:46 -07:00
if (config.people.enabled) {
routes.push({ path: '/' + config.people.route, component: resolve(__dirname, 'routes/people.vue') });
}
if (config.english.enabled) {
routes.push({ path: '/' + config.english.route, component: resolve(__dirname, 'routes/english.vue') });
}
if (config.contact.enabled) {
routes.push({ path: '/' + config.contact.route, component: resolve(__dirname, 'routes/contact.vue') });
}
2020-10-13 12:49:08 -07:00
if (config.user.enabled) {
routes.push({path: '/' + config.user.route, component: resolve(__dirname, 'routes/user.vue')});
2020-10-27 00:52:11 -07:00
routes.push({path: '/' + config.user.termsRoute, component: resolve(__dirname, 'routes/terms.vue')});
2020-10-13 12:49:08 -07:00
}
2020-10-29 15:41:40 -07:00
routes.push({ path: '/admin', component: resolve(__dirname, 'routes/admin.vue') });
2020-10-28 08:22:29 -07:00
if (config.profile.enabled) {
routes.push({path: '/@*', component: resolve(__dirname, 'routes/profile.vue')});
if (config.profile.editorEnabled) {
routes.push({path: '/editor', component: resolve(__dirname, 'routes/profileEditor.vue')});
2020-10-28 08:22:29 -07:00
}
}
if (config.pronouns.enabled) {
2020-11-15 07:10:03 -08:00
routes.push({ path: '/' + config.pronouns.any, component: resolve(__dirname, 'routes/any.vue') });
2020-11-29 02:03:01 -08:00
if (config.pronouns.avoiding) {
routes.push({ path: '/' + config.pronouns.avoiding, component: resolve(__dirname, 'routes/avoiding.vue') });
}
2020-10-28 08:22:29 -07:00
}
2020-11-10 14:41:56 -08:00
routes.push({ path: '/api', component: resolve(__dirname, 'routes/api.vue') });
routes.push({ name: 'all', path: '*', component: resolve(__dirname, 'routes/pronoun.vue') });
},
},
2020-07-22 13:19:23 -07:00
}