build(packages): add pug and sass loader + normalize.css

This commit is contained in:
Julien
2018-09-09 17:06:11 +02:00
parent 3bf11da252
commit ce7ade7871
5 changed files with 1422 additions and 169 deletions

View File

@@ -1,39 +1,30 @@
module.exports = {
/*
** Headers of the page
*/
head: {
title: 'awesome-cheatsheets',
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.' }
{ 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' }
]
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }]
},
/*
** Customize the progress bar color
*/
loading: { color: '#3B8070' },
/*
** Build configuration
*/
loading: { color: "#3B8070" },
build: {
/*
** Run ESLint on save
*/
extend (config, { isDev, isClient }) {
extend(config, { isDev, isClient }) {
if (isDev && isClient) {
config.module.rules.push({
enforce: 'pre',
enforce: "pre",
test: /\.(js|vue)$/,
loader: 'eslint-loader',
loader: "eslint-loader",
exclude: /(node_modules)/
})
});
}
}
}
}
},
css: ["normalize.css/normalize.css"]
};