| | |
| | | module.exports = { |
| | | configureWebpack: (config) => { |
| | | config.module.rules.push({ |
| | | test: /\.md/, |
| | | test: /\.(md|htm)$/, |
| | | use: [{ |
| | | loader: 'text-loader', // 解决ivew组件 忽略前缀i的问题 |
| | | options: { |
| | | prefix: false |
| | | } |
| | | }] |
| | | }, ] |
| | | }) |
| | | }, |
| | | css: { |
| | |
| | | // If you are using less-loader@5 please spread the lessOptions to options directly |
| | | modifyVars: { |
| | | "primary-color": "#1DA57A", // 全局主色 |
| | | "link-color": "#1890ff", // 链接色 |
| | | // "link-color": "#1890ff", // 链接色 |
| | | "link-color": "#ffffff", // 链接色 |
| | | "link-hover-color": "#30a9de", |
| | | "success-color": "#52c41a", // 成功色 |
| | | "warning-color": "#faad14", // 警告色 |
| | | "error-color": "#f5222d", // 错误色 |
| | |
| | | }, |
| | | }, |
| | | }, |
| | | devServer: { |
| | | port: 8080, |
| | | proxy: { |
| | | '/api': { |
| | | target: process.env.VUE_APP_API_BASE_URL, |
| | | ws: false, |
| | | changeOrigin: true, |
| | | pathRewrite: { |
| | | '^/api': '' // 需要rewrite的, |
| | | } |
| | | } |
| | | } |
| | | }, |
| | | }; |