mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-15 17:47:21 +00:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
module.exports = {
|
|
head: {
|
|
title: "Awesome Cheatsheets",
|
|
meta: [
|
|
{ charset: "utf-8" },
|
|
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
|
{
|
|
hid: "description",
|
|
name: "description",
|
|
content:
|
|
"Designed for the ones who enjoy dark interfaces as much as we do. Using the best UX practices for great conversion rates."
|
|
}
|
|
],
|
|
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }]
|
|
},
|
|
env: {
|
|
baseUrl:
|
|
process.env.NODE_ENV === "production"
|
|
? "https://lecoupa.github.io/awesome-cheatsheets/"
|
|
: "http://localhost:3000"
|
|
},
|
|
css: ["normalize.css/normalize.css"],
|
|
plugins: [{ src: "@/plugins/global.js" }],
|
|
modules: [
|
|
[
|
|
"@nuxtjs/google-analytics",
|
|
{
|
|
id: "UA-125493236-1",
|
|
debug: { sendHitTask: process.env.NODE_ENV === "production" }
|
|
}
|
|
],
|
|
[
|
|
"nuxt-sass-resources-loader",
|
|
[
|
|
// Global variables, site-wide settings, config switches, etc
|
|
"@/assets/settings/_colors.scss",
|
|
|
|
// Site-wide mixins and functions
|
|
"@/assets/tools/_mq.scss"
|
|
]
|
|
]
|
|
],
|
|
build: {
|
|
extend(config, { isDev, isClient }) {
|
|
if (isDev && isClient) {
|
|
config.module.rules.push({
|
|
enforce: "pre",
|
|
test: /\.(js|vue)$/,
|
|
loader: "eslint-loader",
|
|
exclude: /(node_modules)/
|
|
});
|
|
}
|
|
},
|
|
postcss: [require("autoprefixer")()]
|
|
}
|
|
};
|