| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- const path = require('path')
- const resolve = dir => {
- return path.join(__dirname, dir)
- }
- // 项目部署基础
- // 默认情况下,我们假设你的应用将被部署在域的根目录下,
- // 例如:https://www.my-app.com/
- // 默认:'/'
- // 如果您的应用程序部署在子路径中,则需要在这指定子路径
- // 例如:https://www.foobar.com/my-app/
- // 需要将它改为'/my-app/'
- const BASE_URL = process.env.NODE_ENV === 'production'
- ? '/dashboard/'
- : '/dashboard'
- // : '/dashboard'
- const luOutPath = '../'
- module.exports = {
- css: {
- loaderOptions: { // 向 CSS 相关的 loader 传递选项
- less: {
- javascriptEnabled: true
- }
- }
- },
- publicPath: BASE_URL,
- // tweak internal webpack configuration.
- // see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
- // 如果你不需要使用eslint,把lintOnSave设为false即可
- lintOnSave: false,
- // webpack 打包导出路径
- outputDir: luOutPath + 'public/dashboard',
- indexPath: luOutPath + 'dashboard/index.html',
- chainWebpack: config => {
- config.resolve.alias
- .set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
- .set('_c', resolve('src/components'))
- },
- // 设为false打包时不生成.map文件
- productionSourceMap: false,
- // 这里写你调用接口的基础路径,来解决跨域,如果设置了代理,那你本地开发环境的axios的baseUrl要写为 '' ,即空字符串
- /*devServer: {
- port: 80,
- proxy: {
- '/api': {
- target: 'http://127.0.0.42/',
- changeOrigin: true
- }
- }
- }*/
- }
|