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

22 lines
448 B
JavaScript
Raw Normal View History

2022-12-22 16:10:01 +00:00
/*
* @Author: Kane
* @Date: 2022-12-17 11:08:18
* @LastEditors: Kane
2023-01-07 03:57:10 +00:00
* @LastEditTime: 2023-01-07 11:12:20
2022-12-22 16:10:01 +00:00
* @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,
2023-01-07 03:57:10 +00:00
},
2022-12-22 16:10:01 +00:00
}
);