Skip to content

Instantly share code, notes, and snippets.

View Edmund1645's full-sized avatar
👨‍💻
Working from home

Edmund Ekott Edmund1645

👨‍💻
Working from home
View GitHub Profile
@Edmund1645
Edmund1645 / nuxt-v-gridsome.css
Last active January 19, 2021 09:34
CSS file the Nuxt.js vs Gridsome article
body {
font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
line-height: 1.5;
}
.header {
display: flex;
@Edmund1645
Edmund1645 / nuxt-jsconfig.json
Last active May 25, 2020 11:22
jsconfig.json files to add webpack aliases imports intellisense to VSCode for Nuxt and Vue.js projects
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"],
"~~/*": ["./*"],
"@@/*": ["./*"]
}
},