aboutsummaryrefslogtreecommitdiff
path: root/nuxt.config.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-07-18 17:42:40 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-07-18 17:42:40 -0400
commit02a6f590a13228da1485cf91e42ebd5684b3a6dd (patch)
tree128c16208c1ba270b7427c968f524b50996f7be5 /nuxt.config.js
parente1e7829e00df7dfae085cd5ab3454f271629545e (diff)
downloadpersonal-website-02a6f590a13228da1485cf91e42ebd5684b3a6dd.tar.gz
personal-website-02a6f590a13228da1485cf91e42ebd5684b3a6dd.tar.bz2
personal-website-02a6f590a13228da1485cf91e42ebd5684b3a6dd.zip
Actually removing blog temporary
Diffstat (limited to 'nuxt.config.js')
-rw-r--r--nuxt.config.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuxt.config.js b/nuxt.config.js
index 39370d1..a09212d 100644
--- a/nuxt.config.js
+++ b/nuxt.config.js
@@ -25,7 +25,7 @@ module.exports = {
/*
** Global CSS
*/
- css: [],
+ css: ['./assets/css/animate.css'],
/*
** Plugins to load before mounting the App
*/
@@ -46,19 +46,19 @@ module.exports = {
markdownit: {
injected: true
},
-
+/*
generate: {
routes: function () {
const fs = require('fs')
const path = require('path')
- return fs.readdirSync('static/content/blog').map(file => {
+ return fs.readdirSync('./assets/content/blog').map(file => {
return {
route: `/blog/${path.parse(file).name}`, // Return the slug
- payload: require(`static/content/blog/${file}`)
+ payload: require(`./assets/content/blog/${file}`)
}
})
}
- },
+ },*/
/*
** vuetify module configuration