22 lines
447 B
JavaScript
22 lines
447 B
JavaScript
/*
|
|
* @Author: Kane
|
|
* @Date: 2022-12-17 11:08:18
|
|
* @LastEditors: Kane
|
|
* @LastEditTime: 2022-12-22 23:47:51
|
|
* @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,
|
|
}
|
|
}
|
|
);
|