11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
import { defineConfig } from "@umijs/max";
|
|
|
|
|
|
export default defineConfig({
|
|
define: {
|
|
'process.env': {
|
|
API_HOST_URL: 'http://localhost:3000'
|
|
}
|
|
}
|
|
})
|