* Add tern as dependency * Add build rule to transpile mjs * Initial implementation of the auto complete engine * Separate out the tern server code to separate file * Added extra type defs for tern server * Boost the pw completion result to the top of the list * Added acorn and acorn-walk as dependency * Semantic linting powered by tern * Fix DeepCode warnings for js-editor * Remove unused registerLint tern extension Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
366 lines
9.4 KiB
JavaScript
366 lines
9.4 KiB
JavaScript
// Common options
|
|
export const options = {
|
|
name: "Hoppscotch",
|
|
shortDescription: "A free, fast and beautiful API request builder",
|
|
description: "Helps you create requests faster, saving precious time on development.",
|
|
loading: {
|
|
color: "var(--ac-color)",
|
|
background: "var(--bg-color)",
|
|
},
|
|
app: {
|
|
background: "#202124",
|
|
},
|
|
social: {
|
|
twitter: "@liyasthomas",
|
|
},
|
|
}
|
|
|
|
export default {
|
|
// Disable server-side rendering (https://go.nuxtjs.dev/ssr-mode)
|
|
ssr: false,
|
|
|
|
// Target (https://go.nuxtjs.dev/config-target)
|
|
target: "static",
|
|
|
|
// Default: localhost
|
|
server: {
|
|
host: "0.0.0.0",
|
|
},
|
|
|
|
// Global page headers (https://go.nuxtjs.dev/config-head)
|
|
head: {
|
|
meta: [
|
|
{
|
|
name: "keywords",
|
|
content:
|
|
"hoppscotch, hopp scotch, hoppscotch online, hoppscotch app, postwoman, postwoman chrome, postwoman online, postwoman for mac, postwoman app, postwoman for windows, postwoman google chrome, postwoman chrome app, get postwoman, postwoman web, postwoman android, postwoman app for chrome, postwoman mobile app, postwoman web app, api, request, testing, tool, rest, websocket, sse, graphql, socketio",
|
|
},
|
|
{
|
|
name: "X-UA-Compatible",
|
|
content: "IE=edge, chrome=1",
|
|
},
|
|
{
|
|
itemprop: "name",
|
|
content: `${options.name} • ${options.shortDescription}`,
|
|
},
|
|
{
|
|
itemprop: "description",
|
|
content: options.description,
|
|
},
|
|
{
|
|
itemprop: "image",
|
|
content: `${process.env.BASE_URL}/banner.jpg`,
|
|
},
|
|
// Add to homescreen for Chrome on Android. Fallback for PWA (handled by nuxt)
|
|
{
|
|
name: "application-name",
|
|
content: options.name,
|
|
},
|
|
// Windows phone tile icon
|
|
{
|
|
name: "msapplication-TileImage",
|
|
content: `/icon.png`,
|
|
},
|
|
{
|
|
name: "msapplication-TileColor",
|
|
content: options.app.background,
|
|
},
|
|
{
|
|
name: "msapplication-tap-highlight",
|
|
content: "no",
|
|
},
|
|
],
|
|
},
|
|
|
|
// Customize the progress-bar color (https://nuxtjs.org/api/configuration-loading/#customizing-the-progress-bar)
|
|
loading: {
|
|
color: options.loading.color,
|
|
continuous: true,
|
|
},
|
|
|
|
// Customize the loading indicator (https://nuxtjs.org/api/configuration-loading-indicator)
|
|
loadingIndicator: {
|
|
name: "pulse",
|
|
color: options.loading.color,
|
|
background: options.loading.background,
|
|
},
|
|
|
|
// Global CSS (https://go.nuxtjs.dev/config-css)
|
|
css: ["~/assets/scss/styles.scss", "~/assets/scss/themes.scss", "~/assets/scss/fonts.scss"],
|
|
|
|
// Plugins to run before rendering page (https://go.nuxtjs.dev/config-plugins)
|
|
plugins: [
|
|
"~/plugins/vuex-persist",
|
|
"~/plugins/v-tooltip",
|
|
{ src: "~/plugins/web-worker", ssr: false },
|
|
],
|
|
|
|
// Auto import components (https://go.nuxtjs.dev/config-components)
|
|
components: true,
|
|
|
|
// Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
|
|
buildModules: [
|
|
// https://github.com/nuxt-community/pwa-module
|
|
"@nuxtjs/pwa",
|
|
// https://github.com/nuxt-community/analytics-module
|
|
"@nuxtjs/google-analytics",
|
|
// https://github.com/nuxt-community/gtm-module
|
|
"@nuxtjs/gtm",
|
|
// https://github.com/nuxt-community/nuxt-tailwindcss
|
|
"@nuxtjs/tailwindcss",
|
|
// https://github.com/nuxt-community/color-mode-module
|
|
"@nuxtjs/color-mode",
|
|
],
|
|
|
|
// Modules (https://go.nuxtjs.dev/config-modules)
|
|
modules: [
|
|
// https://github.com/nuxt-community/axios-module
|
|
"@nuxtjs/axios",
|
|
// https://github.com/nuxt-community/modules/tree/master/packages/toast
|
|
"@nuxtjs/toast",
|
|
// https://github.com/nuxt-community/i18n-module
|
|
"nuxt-i18n",
|
|
// https://github.com/nuxt-community/robots-module
|
|
"@nuxtjs/robots",
|
|
// https://github.com/nuxt-community/sitemap-module
|
|
"@nuxtjs/sitemap",
|
|
],
|
|
|
|
// PWA module configuration (https://pwa.nuxtjs.org/setup)
|
|
pwa: {
|
|
meta: {
|
|
name: `${options.name} - ${options.shortDescription}`,
|
|
description: options.description,
|
|
ogHost: process.env.BASE_URL,
|
|
ogImage: `${process.env.BASE_URL}/banner.jpg`,
|
|
twitterCard: "summary_large_image",
|
|
twitterSite: options.social.twitter,
|
|
twitterCreator: options.social.twitter,
|
|
theme_color: options.app.background,
|
|
},
|
|
manifest: {
|
|
name: options.name,
|
|
short_name: options.name,
|
|
description: options.shortDescription,
|
|
start_url: "/",
|
|
background_color: options.app.background,
|
|
},
|
|
},
|
|
|
|
// Toast module configuration (https://github.com/nuxt-community/modules/tree/master/packages/toast)
|
|
toast: {
|
|
position: "bottom-center",
|
|
duration: 3000,
|
|
theme: "bubble",
|
|
keepOnHover: true,
|
|
},
|
|
|
|
// Google Analytics module configuration (https://github.com/nuxt-community/analytics-module)
|
|
googleAnalytics: {
|
|
id: process.env.GA_ID,
|
|
},
|
|
|
|
// Google Tag Manager module configuration (https://github.com/nuxt-community/gtm-module)
|
|
gtm: {
|
|
id: process.env.GTM_ID,
|
|
},
|
|
|
|
// Sitemap module configuration (https://github.com/nuxt-community/sitemap-module)
|
|
sitemap: {
|
|
hostname: process.env.BASE_URL || "https://hoppscotch.io",
|
|
},
|
|
|
|
// Robots module configuration (https://github.com/nuxt-community/robots-module)
|
|
robots: {
|
|
UserAgent: "*",
|
|
Disallow: "",
|
|
Allow: "/",
|
|
Sitemap: `${process.env.BASE_URL}/sitemap.xml`,
|
|
},
|
|
|
|
// Color Mode module configuration (https://github.com/nuxt-community/color-mode-module)
|
|
colorMode: {
|
|
classSuffix: "",
|
|
preference: "dark",
|
|
fallback: "dark",
|
|
},
|
|
|
|
// i18n module configuration (https://github.com/nuxt-community/i18n-module)
|
|
i18n: {
|
|
locales: [
|
|
{
|
|
code: "en",
|
|
name: "English",
|
|
iso: "en-US",
|
|
file: "en-US.json",
|
|
},
|
|
{
|
|
code: "es",
|
|
name: "Español",
|
|
iso: "es-ES",
|
|
file: "es-ES.json",
|
|
},
|
|
{
|
|
code: "fr",
|
|
name: "Français",
|
|
iso: "fr-FR",
|
|
file: "fr-FR.json",
|
|
},
|
|
{
|
|
code: "fa",
|
|
name: "Farsi",
|
|
iso: "fa-IR",
|
|
file: "fa-IR.json",
|
|
},
|
|
{
|
|
code: "pt",
|
|
name: "Português",
|
|
iso: "pt-PT",
|
|
file: "pt-PT.json",
|
|
},
|
|
{
|
|
code: "pt-br",
|
|
name: "Português Brasileiro",
|
|
iso: "pt-BR",
|
|
file: "pt-BR.json",
|
|
},
|
|
{
|
|
code: "cn",
|
|
name: "简体中文",
|
|
iso: "zh-CN",
|
|
file: "zh-CN.json",
|
|
},
|
|
{
|
|
code: "tw",
|
|
name: "繁體中文",
|
|
iso: "zh-TW",
|
|
file: "zh-TW.json",
|
|
},
|
|
{
|
|
code: "id",
|
|
name: "Bahasa Indonesia",
|
|
iso: "id-ID",
|
|
file: "id-ID.json",
|
|
},
|
|
{
|
|
code: "tr",
|
|
name: "Türkçe",
|
|
iso: "tr-TR",
|
|
file: "tr-TR.json",
|
|
},
|
|
{
|
|
code: "de",
|
|
name: "Deutsch",
|
|
iso: "de-DE",
|
|
file: "de-DE.json",
|
|
},
|
|
{
|
|
code: "ja",
|
|
name: "日本語",
|
|
iso: "ja-JP",
|
|
file: "ja-JP.json",
|
|
},
|
|
{
|
|
code: "ko",
|
|
name: "한국어",
|
|
iso: "ko-KR",
|
|
file: "ko-KR.json",
|
|
},
|
|
{
|
|
code: "bn",
|
|
name: "Bengali",
|
|
iso: "bn-BD",
|
|
file: "bn-BD.json",
|
|
},
|
|
{
|
|
code: "ml",
|
|
name: "മലയാളം",
|
|
iso: "ml-ML",
|
|
file: "ml-ML.json",
|
|
},
|
|
{
|
|
code: "vi",
|
|
name: "Vietnamese",
|
|
iso: "vi-VN",
|
|
file: "vi-VN.json",
|
|
},
|
|
{
|
|
code: "nl",
|
|
name: "Dutch",
|
|
iso: "nl-BE",
|
|
file: "nl-BE.json",
|
|
},
|
|
],
|
|
defaultLocale: "en",
|
|
vueI18n: {
|
|
fallbackLocale: "en",
|
|
},
|
|
lazy: true,
|
|
langDir: "lang/",
|
|
detectBrowserLanguage: {
|
|
alwaysRedirect: true,
|
|
fallbackLocale: "en",
|
|
},
|
|
},
|
|
|
|
// Build Configuration (https://go.nuxtjs.dev/config-build)
|
|
build: {
|
|
// You can extend webpack config here
|
|
extend(config, { isDev, isClient }) {
|
|
// Sets webpack's mode to development if `isDev` is true.
|
|
if (isDev) {
|
|
config.mode = "development"
|
|
}
|
|
config.node = {
|
|
fs: "empty",
|
|
}
|
|
|
|
if (isClient) {
|
|
config.module.rules.unshift({
|
|
test: /\.worker\.(c|m)?js$/i,
|
|
use: { loader: "worker-loader" },
|
|
exclude: /(node_modules)/,
|
|
})
|
|
config.module.rules.push({
|
|
test: /\.md$/i,
|
|
use: { loader: "raw-loader" },
|
|
exclude: /(node_modules)/,
|
|
})
|
|
|
|
config.module.rules.push({
|
|
test: /\.mjs$/,
|
|
include: /node_modules/,
|
|
type: "javascript/auto"
|
|
})
|
|
}
|
|
},
|
|
parallel: true,
|
|
cache: true,
|
|
// hardSource: true,
|
|
},
|
|
|
|
// Generate configuration (https://nuxtjs.org/api/configuration-generate)
|
|
generate: {
|
|
fallback: true,
|
|
},
|
|
|
|
// Public runtime configuration (https://nuxtjs.org/guide/runtime-config)
|
|
publicRuntimeConfig: {
|
|
GA_ID: process.env.GA_ID || "UA-61422507-4",
|
|
GTM_ID: process.env.GTM_ID || "GTM-NMKVBMV",
|
|
BASE_URL: process.env.BASE_URL || "https://hoppscotch.io",
|
|
},
|
|
|
|
// Private runtime configuration (https://nuxtjs.org/guide/runtime-config)
|
|
privateRuntimeConfig: {
|
|
API_KEY: process.env.API_KEY,
|
|
AUTH_DOMAIN: process.env.AUTH_DOMAIN,
|
|
DATABASE_URL: process.env.DATABASE_URL,
|
|
PROJECT_ID: process.env.PROJECT_ID,
|
|
STORAGE_BUCKET: process.env.STORAGE_BUCKET,
|
|
MESSAGING_SENDER_ID: process.env.MESSAGING_SENDER_ID,
|
|
APP_ID: process.env.APP_ID,
|
|
MEASUREMENT_ID: process.env.MEASUREMENT_ID,
|
|
},
|
|
}
|