-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.development
23 lines (21 loc) · 1.08 KB
/
.env.development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# NODE_ENV can only be 'development' or 'production'.
# If set other value, packaged resource would be difference between environment.
NODE_ENV = 'development'
# Just a flag
VUE_APP_ENV = 'dev'
# Whether application is running on docker
VUE_APP_RUN_ON_DOCKER = 'false'
# Backend server IP and port. It's required when the environment is development.
# Left blank if the environment is not development.
VUE_APP_BASE_URL = 'http://localhost:8080'
# Base api
VUE_APP_BASE_API = '/exrx-net-crawler-server-dev_loc'
# Resource base api for pictures, videos ect.
VUE_APP_RESOURCE_BASE_API = 'http://localhost:8080/exrx-net-crawler-server-dev_loc'
# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
# to control whether the babel-plugin-dynamic-import-node plugin is enabled.
# It only does one thing by converting all import() to require().
# This configuration can significantly increase the speed of hot updates,
# when you have a large number of pages.
# Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js
VUE_CLI_BABEL_TRANSPILE_MODULES = true