12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import { defineConfig } from '@rsbuild/core';
|
|
import { pluginReact } from '@rsbuild/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [pluginReact()],
|
|
source: {
|
|
define: {
|
|
'process.env.VITE_API_BASE_URL': JSON.stringify(process.env.VITE_API_BASE_URL),
|
|
},
|
|
},
|
|
});
|