merakiui/nuxt.config.js

79 lines
2.7 KiB
JavaScript
Raw Normal View History

2021-02-15 07:39:16 +00:00
export default {
// Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode
ssr: false,
// Target: https://go.nuxtjs.dev/config-target
target: 'static',
2021-02-15 09:09:00 +00:00
googleAnalytics: {
id: "UA-167213766-1"
},
2021-02-15 07:39:16 +00:00
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
2021-05-31 20:30:34 +00:00
title: 'Meraki UI Tailwind CSS Components',
2021-02-15 07:39:16 +00:00
htmlAttrs: {
lang: 'en'
},
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
2021-05-31 20:30:34 +00:00
{ hid: 'description', name: 'description', content: 'Beautiful Tailwind CSS components that support RTL languages & fully responsive based on Flexbox & CSS Grid with elegant Dark Mode.' },
2021-02-15 08:49:47 +00:00
{ name: "twitter:card", content: "summary_large_image" },
2021-05-31 20:30:34 +00:00
{ hid: "twitter:title", name: "twitter:title", content: "Meraki UI Tailwind CSS Components" },
2021-02-15 08:49:47 +00:00
{
2021-05-08 10:43:28 +00:00
hid: "twitter:description",
2021-02-15 08:49:47 +00:00
name: "twitter:description",
content:
2021-05-31 20:30:34 +00:00
"Beautiful Tailwind CSS components that support RTL languages & fully responsive based on Flexbox & CSS Grid with elegant Dark Mode.",
2021-02-15 08:49:47 +00:00
},
2021-09-28 03:49:13 +00:00
{ hid: "twitter:image", name: "twitter:image", content: 'https://raw.githubusercontent.com/bakateam/merakiui/main/assets/images/thumbnail.png' },
2021-05-31 20:30:34 +00:00
{ hid: "og:title", property: "og:title", content: "Meraki UI Tailwind CSS Components" },
2021-02-15 08:49:47 +00:00
{ property: "og:site_name", content: "Meraki UI" },
2021-05-08 10:43:28 +00:00
{ hid: "og:type", property: "og:type", content: "website" },
2021-09-28 03:49:13 +00:00
{ hid: "og:image", property: "og:image", content: 'https://raw.githubusercontent.com/bakateam/merakiui/main/assets/images/thumbnail.png' },
2021-02-15 08:49:47 +00:00
{
2021-05-08 10:43:28 +00:00
hid: "og:description",
2021-02-15 08:49:47 +00:00
property: "og:description",
content:
2021-05-31 20:30:34 +00:00
"Beautiful Tailwind CSS components that support RTL languages & fully responsive based on Flexbox & CSS Grid with elegant Dark Mode.",
2021-02-15 08:49:47 +00:00
},
2021-02-15 07:39:16 +00:00
],
link: [
2021-06-11 19:28:23 +00:00
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap' }
2021-02-15 07:39:16 +00:00
]
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
2021-02-15 08:22:20 +00:00
'~/plugins/vue-clipboard'
2021-02-15 07:39:16 +00:00
],
// Auto import components: https://go.nuxtjs.dev/config-components
2021-04-09 20:49:05 +00:00
components: [
{
path: '~/components',
pathPrefix: false,
},
],
2021-02-15 07:39:16 +00:00
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
2021-02-15 09:09:00 +00:00
'@nuxtjs/tailwindcss',
'@nuxtjs/google-analytics'
2021-02-15 07:39:16 +00:00
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
],
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {
}
}