This commit is contained in:
Pan 2019-03-11 16:56:27 +08:00
parent 653de1f31e
commit 66e8ca9cec
6 changed files with 27 additions and 22 deletions

View File

@ -1,4 +1,5 @@
VUE_APP_BASE_API = '/api-dev' VUE_APP_BASE_API = '/api'
ENV = 'development'
// With this configuration, vue-cli uses babel-plugin-dynamic-import-node // With this configuration, vue-cli uses babel-plugin-dynamic-import-node
// It only does one thing by converting all import() to require() // It only does one thing by converting all import() to require()

View File

@ -1 +1,2 @@
VUE_APP_BASE_API = '/api-prod' VUE_APP_BASE_API = '/api'
ENV = 'production'

View File

@ -1,2 +0,0 @@
NODE_ENV=production
VUE_APP_BASE_API = '/api-sit'

3
.env.staging Normal file
View File

@ -0,0 +1,3 @@
NODE_ENV=production
VUE_APP_BASE_API = '/api'
ENV = 'staging'

View File

@ -7,7 +7,7 @@
"scripts": { "scripts": {
"dev": "vue-cli-service serve", "dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build", "build:prod": "vue-cli-service build",
"build:sit": "vue-cli-service build --mode sit", "build:stage": "vue-cli-service build --mode staging",
"build:preview": "node build/index.js --preview", "build:preview": "node build/index.js --preview",
"build:report": "node build/index.js --report", "build:report": "node build/index.js --report",
"lint": "eslint --ext .js,.vue src", "lint": "eslint --ext .js,.vue src",
@ -39,31 +39,31 @@
"dependencies": { "dependencies": {
"axios": "0.18.0", "axios": "0.18.0",
"clipboard": "1.7.1", "clipboard": "1.7.1",
"codemirror": "5.42.0", "codemirror": "5.44.0",
"driver.js": "0.8.1", "driver.js": "0.9.5",
"dropzone": "5.5.1", "dropzone": "5.5.1",
"echarts": "4.1.0", "echarts": "4.1.0",
"element-ui": "2.4.10", "element-ui": "2.6.1",
"file-saver": "1.3.8", "file-saver": "2.0.1",
"fuse.js": "3.4.2", "fuse.js": "3.4.4",
"js-cookie": "2.2.0", "js-cookie": "2.2.0",
"jsonlint": "1.6.3", "jsonlint": "1.6.3",
"jszip": "3.1.5", "jszip": "3.2.0",
"normalize.css": "7.0.0", "normalize.css": "7.0.0",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"path-to-regexp": "2.4.0", "path-to-regexp": "2.4.0",
"screenfull": "4.0.0", "screenfull": "4.0.1",
"showdown": "1.8.6", "showdown": "1.9.0",
"sortablejs": "1.7.0", "sortablejs": "1.8.3",
"tui-editor": "1.2.7", "tui-editor": "1.3.2",
"vue": "2.5.17", "vue": "2.6.8",
"vue-count-to": "1.0.13", "vue-count-to": "1.0.13",
"vue-i18n": "7.3.2", "vue-i18n": "7.3.2",
"vue-router": "3.0.2", "vue-router": "3.0.2",
"vue-splitpane": "1.0.2", "vue-splitpane": "1.0.2",
"vuedraggable": "2.17.0", "vuedraggable": "2.17.0",
"vuex": "3.0.1", "vuex": "3.1.0",
"xlsx": "^0.11.16" "xlsx": "0.14.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.0.0", "@babel/core": "7.0.0",
@ -76,8 +76,8 @@
"babel-core": "7.0.0-bridge.0", "babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1", "babel-eslint": "10.0.1",
"babel-jest": "23.6.0", "babel-jest": "23.6.0",
"chalk": "^2.4.1", "chalk": "2.4.2",
"connect": "^3.6.6", "connect": "3.6.6",
"eslint": "5.15.1", "eslint": "5.15.1",
"eslint-plugin-vue": "5.2.2", "eslint-plugin-vue": "5.2.2",
"husky": "0.14.3", "husky": "0.14.3",
@ -90,8 +90,8 @@
"script-loader": "0.7.2", "script-loader": "0.7.2",
"serve-static": "^1.13.2", "serve-static": "^1.13.2",
"svg-sprite-loader": "4.1.3", "svg-sprite-loader": "4.1.3",
"svgo": "1.1.1", "svgo": "1.2.0",
"vue-template-compiler": "2.5.17" "vue-template-compiler": "2.6.8"
}, },
"engines": { "engines": {
"node": ">=8.9", "node": ">=8.9",

View File

@ -18,6 +18,8 @@
</template> </template>
<script> <script>
// fuse is a lightweight fuzzy-search module
// make search results more in line with expectations
import Fuse from 'fuse.js' import Fuse from 'fuse.js'
import path from 'path' import path from 'path'
import i18n from '@/lang' import i18n from '@/lang'