1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-09 15:42:21 +00:00
awesome-cheatsheets/nuxt.config.js

31 lines
867 B
JavaScript
Raw Normal View History

2018-09-09 14:50:38 +00:00
module.exports = {
head: {
title: "Awesome Cheatsheets",
2018-09-09 14:50:38 +00:00
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."
}
2018-09-09 14:50:38 +00:00
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }]
2018-09-09 14:50:38 +00:00
},
loading: { color: "#3B8070" },
2018-09-09 14:50:38 +00:00
build: {
extend(config, { isDev, isClient }) {
2018-09-09 14:50:38 +00:00
if (isDev && isClient) {
config.module.rules.push({
enforce: "pre",
2018-09-09 14:50:38 +00:00
test: /\.(js|vue)$/,
loader: "eslint-loader",
2018-09-09 14:50:38 +00:00
exclude: /(node_modules)/
});
2018-09-09 14:50:38 +00:00
}
}
},
css: ["normalize.css/normalize.css"]
};