1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-11-15 01:34:06 +00:00
awesome-cheatsheets/nuxt.config.js

33 lines
954 B
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:
"Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file."
}
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }]
},
loading: { color: "#3B8070" },
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")()]
},
css: ["normalize.css/normalize.css"],
plugins: [{ src: "@/plugins/global.js" }]
};