mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 21:46:56 -06:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
export const config = {
|
|
ENV: process.env.ENV,
|
|
PORT: process.env.PORT,
|
|
PUBLIC_URL: process.env.PUBLIC_URL,
|
|
};
|
|
|
|
export const deFaultValues = {
|
|
ENV: 'production',
|
|
PORT: 3000,
|
|
PUBLIC_URL: '/',
|
|
} |