vue-learning/企业级管理系统/web/admin_system/vue.config.js

22 lines
448 B
JavaScript

/*
* @Author: Kane
* @Date: 2022-12-17 11:08:18
* @LastEditors: Kane
* @LastEditTime: 2023-01-07 11:12:20
* @FilePath: \admin_system\vue.config.js
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
const { defineConfig } = require('@vue/cli-service');
module.exports = defineConfig(
{
transpileDependencies: true,
devServer: {
open: true,
host: "localhost",
port: 8000,
},
}
);