diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..9e26dad --- /dev/null +++ b/.env.development @@ -0,0 +1,4 @@ +NODE_ENV='development' +# must start with VUE_APP_ +VUE_APP_ENV = 'development' + diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..4b2d764 --- /dev/null +++ b/.env.production @@ -0,0 +1,4 @@ +NODE_ENV='production' +# must start with VUE_APP_ +VUE_APP_ENV = 'production' + \ No newline at end of file diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..e60a797 --- /dev/null +++ b/.env.test @@ -0,0 +1,4 @@ +NODE_ENV='test' +# must start with VUE_APP_ +VUE_APP_ENV = 'test' + diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 30b4f91..9b2f9a2 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -9,6 +9,7 @@ @click-left="onClickLeft" @click-right="onClickRight" > + @@ -49,7 +50,7 @@ export default { } }; -