diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-19 14:20:13 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-19 14:20:13 +0200 |
commit | c52f0ac6ce79a8e1f4342219ad3651b9966b78b2 (patch) | |
tree | 0320bb0af093d4e4714892f32a4a98c793be4203 | |
parent | 6ba5b9968348d0370722972e2763167a8785d8c6 (diff) | |
download | puszcza-c52f0ac6ce79a8e1f4342219ad3651b9966b78b2.tar.gz puszcza-c52f0ac6ce79a8e1f4342219ad3651b9966b78b2.zip |
Add baseUrl
-rw-r--r-- | nuxt.config.js | 3 | ||||
-rw-r--r-- | pages/kronika/index.vue | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nuxt.config.js b/nuxt.config.js index 036135b..44a1de3 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -40,6 +40,9 @@ export default { } ] }, + env: { + baseUrl: process.env.DEPLOY_URL || 'http://localhost:3000' + }, generate: { routes: k.getPosts().map(post => post.route) }, diff --git a/pages/kronika/index.vue b/pages/kronika/index.vue index 13322f4..20341e9 100644 --- a/pages/kronika/index.vue +++ b/pages/kronika/index.vue @@ -32,7 +32,9 @@ export default { methods: { getPosts() { if (this.posts.length < 1) { - this.$axios.get(`/api/posts.json`).then(r => (this.posts = r.data)) + this.$axios + .get(`${process.env.baseUrl}/api/posts.json`) + .then(r => (this.posts = r.data)) } console.log(this.posts) } |