You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
/*
|
|
* @Author: zhangjiabao
|
|
* @Date: 2024-01-02 15:41:16
|
|
* @LastEditors: Please set LastEditors
|
|
* @LastEditTime: 2024-01-08 00:07:54
|
|
* @FilePath: /luoo_manage_fe/config/dev.env.js
|
|
*/
|
|
"use strict";
|
|
const merge = require("webpack-merge");
|
|
const prodEnv = require("./prod.env");
|
|
|
|
module.exports = merge(prodEnv, {
|
|
NODE_ENV: '"development"',
|
|
BASE_API: '"http://localhost:9528"'
|
|
});
|