提交 86771863 authored 作者: jianglw's avatar jianglw

修改部分bug

上级 db8715e5
......@@ -2,7 +2,7 @@
ENV = 'development'
# 若依管理系统/开发环境
VUE_APP_BASE_API = '/api'
VUE_APP_BASE_API = '/'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
......@@ -2,7 +2,9 @@
ENV = 'production'
# 若依管理系统/生产环境
VUE_APP_BASE_API = '/api'
VUE_APP_BASE_API = '/'
#端口
PORT = '8080'
#{{ window._CONFIG['domianURL'] }}/jmreport/list?token=${token}
#layouts/IframePageView
......@@ -10466,6 +10466,14 @@
"ajv-keywords": "^3.5.2"
}
},
"script-ext-html-webpack-plugin": {
"version": "2.1.5",
"resolved": "https://registry.npmmirror.com/script-ext-html-webpack-plugin/-/script-ext-html-webpack-plugin-2.1.5.tgz",
"integrity": "sha512-nMjd5dtsnoB8dS+pVM9ZL4mC9O1uVtTxrDS99OGZsZxFbkZE6pw0HCMued/cncDrKivIShO9vwoyOTvsGqQHEQ==",
"requires": {
"debug": "^4.2.0"
}
},
"scss-tokenizer": {
"version": "0.2.3",
"resolved": "https://registry.npm.taobao.org/scss-tokenizer/download/scss-tokenizer-0.2.3.tgz",
......
......@@ -10,17 +10,17 @@ VueRouter.prototype.push = function push(location) {
}
const routes = [
{
path: '/',
path: '/topologyView/list',
name: 'Index',
component: () =>import('@/views/test/Test.vue')
},
{
path: '/Workspace',
path: '/toplogyView/workspace',
name: 'Workspace',
component: () =>import('@/views/topology/Workspace.vue')
},
{
path: '/preview',
path: '/toplogyView/preview',
name: 'Preview',
component: () =>import('@/views/topology/Preview.vue')
}
......
......@@ -216,11 +216,11 @@ export default {
props:{
editorUrl:{
type:String,
default:()=>{return "/workspace"}
default:()=>{return "/toplogyView/workspace"}
},
previewUrl:{
type:String,
default:()=>{return "/preview"}
default:()=>{return "/toplogyView/preview"}
}
},
components: {
......
<template>
<div>
<ParamsConfig :editorUrl="'/workspace'" :previewUrl="'/preview'"></ParamsConfig>
<!-- <workspace></workspace> -->
<ParamsConfig :editorUrl="'/toplogyView/workspace'" :previewUrl="'/toplogyView/preview'"></ParamsConfig>
</div>
</template>
<script>
// import { TopologyWorkspace, Preview, data, ParamsConfig } from "topology-work";
import ParamsConfig from "../configuration/ParamsConfig.vue";
console.log(ParamsConfig)
// import Workspace from "../topology/Workspace.vue";
export default {
components: {
// topology: TopologyWorkspace,
......
......@@ -10,11 +10,11 @@ module.exports = {
configureWebpack: {
name: name
},
publicPath: process.env.NODE_ENV === "production" ? "/topology" : "/",
publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
// 在npm run build 或 yarn build 时 ,生成文件的目录名称(要和baseUrl的生产环境路径一致)(默认dist)
outputDir: 'dist',
// 用于放置生成的静态资源 (js、css、img、fonts) 的;(项目打包之后,静态资源会放在这个文件夹下)
assetsDir: 'static',
// assetsDir: 'static',
// 是否开启eslint保存检测,有效值:ture | false | 'error'
lintOnSave: false,
// 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
......@@ -36,76 +36,76 @@ module.exports = {
},
disableHostCheck: true
},
// configureWebpack: {
// name: name,
// resolve: {
// alias: {
// '@': resolve('src')
// }
// }
// },
// chainWebpack(config) {
// config.plugins.delete('preload') // TODO: need test
// config.plugins.delete('prefetch') // TODO: need test
configureWebpack: {
name: name,
resolve: {
alias: {
'@': resolve('src')
}
}
},
chainWebpack(config) {
config.plugins.delete('preload') // TODO: need test
config.plugins.delete('prefetch') // TODO: need test
// // set svg-sprite-loader
// config.module
// .rule('svg')
// .exclude.add(resolve('src/assets/icons'))
// .end()
// config.module
// .rule('icons')
// .test(/\.svg$/)
// .include.add(resolve('src/assets/icons'))
// .end()
// .use('svg-sprite-loader')
// .loader('svg-sprite-loader')
// .options({
// symbolId: 'icon-[name]'
// })
// .end()
// set svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/assets/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/assets/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
// config
// .when(process.env.NODE_ENV !== 'development',
// config => {
// config
// .plugin('ScriptExtHtmlWebpackPlugin')
// .after('html')
// .use('script-ext-html-webpack-plugin', [{
// // `runtime` must same as runtimeChunk name. default is `runtime`
// inline: /runtime\..*\.js$/
// }])
// .end()
// config
// .optimization.splitChunks({
// chunks: 'all',
// cacheGroups: {
// libs: {
// name: 'chunk-libs',
// test: /[\\/]node_modules[\\/]/,
// priority: 10,
// chunks: 'initial' // only package third parties that are initially dependent
// },
// elementUI: {
// name: 'chunk-elementUI', // split elementUI into a single package
// priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
// test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
// },
// commons: {
// name: 'chunk-commons',
// test: resolve('src/components'), // can customize your rules
// minChunks: 3, // minimum common number
// priority: 5,
// reuseExistingChunk: true
// }
// }
// })
// config.optimization.runtimeChunk('single'),
// {
// from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
// to: './', //到根目录下
// }
// }
// )
// }
config
.when(process.env.NODE_ENV !== 'development',
config => {
config
.plugin('ScriptExtHtmlWebpackPlugin')
.after('html')
.use('script-ext-html-webpack-plugin', [{
// `runtime` must same as runtimeChunk name. default is `runtime`
inline: /runtime\..*\.js$/
}])
.end()
config
.optimization.splitChunks({
chunks: 'all',
cacheGroups: {
libs: {
name: 'chunk-libs',
test: /[\\/]node_modules[\\/]/,
priority: 10,
chunks: 'initial' // only package third parties that are initially dependent
},
elementUI: {
name: 'chunk-elementUI', // split elementUI into a single package
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
},
commons: {
name: 'chunk-commons',
test: resolve('src/components'), // can customize your rules
minChunks: 3, // minimum common number
priority: 5,
reuseExistingChunk: true
}
}
})
config.optimization.runtimeChunk('single'),
{
from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
to: './', //到根目录下
}
}
)
}
}
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论