Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikita Krupin <krupin.nikita0110@gmail.com>2021-12-13 02:32:42 +0300
committerNikita Krupin <krupin.nikita0110@gmail.com>2021-12-13 02:32:42 +0300
commitc6b51561caa8e240298e7995caae460023a4380d (patch)
tree56b0429ed2aab4036b27b752ef9185c61ac2bf90 /Website/nuxt.config.js
parent8de9dfc9df514e17ee42cec2e02ffdaa97c5ee50 (diff)
files linted, multiword-component rule turned off
Diffstat (limited to 'Website/nuxt.config.js')
-rw-r--r--Website/nuxt.config.js63
1 files changed, 32 insertions, 31 deletions
diff --git a/Website/nuxt.config.js b/Website/nuxt.config.js
index 57e644d..9860f32 100644
--- a/Website/nuxt.config.js
+++ b/Website/nuxt.config.js
@@ -1,39 +1,42 @@
-import colors from 'vuetify/es5/util/colors'
+import colors from "vuetify/es5/util/colors";
export default {
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
- titleTemplate: 'Return YouTube Dislike',
- title: 'Return YouTube Dislike',
+ titleTemplate: "Return YouTube Dislike",
+ title: "Return YouTube Dislike",
htmlAttrs: {
- lang: 'en'
+ lang: "en",
},
meta: [
- { charset: 'utf-8' },
- { name: 'viewport', content: 'width=device-width, initial-scale=1' },
+ { charset: "utf-8" },
+ { name: "viewport", content: "width=device-width, initial-scale=1" },
- { hid: 'description', name: 'description', content: 'An extension that returns dislike statistics to YouTube. For now, it only works if a video had public display of dislikes enabled before YouTube removed dislike stats. ' },
- { hid: 'og:image', name: 'og:image', content: '/logo.png' },
- { hid: 'theme-color', name: 'theme-color', content: '#ff0000' }
+ {
+ hid: "description",
+ name: "description",
+ content:
+ "An extension that returns dislike statistics to YouTube. For now, it only works if a video had public display of dislikes enabled before YouTube removed dislike stats. ",
+ },
+ { hid: "og:image", name: "og:image", content: "/logo.png" },
+ { hid: "theme-color", name: "theme-color", content: "#ff0000" },
],
link: [
- { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' },
- { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
- ]
+ { rel: "icon", type: "image/svg+xml", href: "/logo.svg" },
+ { rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
+ ],
},
- target: 'static',
+ target: "static",
css: [],
plugins: [],
components: true,
- buildModules: [
- '@nuxtjs/vuetify',
- ],
+ buildModules: ["@nuxtjs/vuetify"],
modules: [],
// Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
vuetify: {
- customVariables: ['~/assets/variables.scss'],
+ customVariables: ["~/assets/variables.scss"],
theme: {
dark: true,
themes: {
@@ -44,25 +47,23 @@ export default {
info: colors.teal.lighten1,
warning: colors.amber.base,
error: colors.deepOrange.accent4,
- success: colors.green.accent3
- }
- }
- }
+ success: colors.green.accent3,
+ },
+ },
+ },
},
-
build: {
- extend (config, ctx) {
+ extend(config, ctx) {
// Run ESLint on save (dev-only)
if (ctx.isDev && ctx.isClient) {
config.module.rules.push({
- enforce: 'pre',
+ enforce: "pre",
test: /\.(js|vue)$/,
- loader: 'eslint-loader',
- exclude: /(node_modules)/
- })
+ loader: "eslint-loader",
+ exclude: /(node_modules)/,
+ });
}
- }
- }
-
-}
+ },
+ },
+};