16 lines
365 B
TypeScript
16 lines
365 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),
|
|
},
|
|
},
|
|
html: {
|
|
title: '露娜助手',
|
|
favicon: './public/favicon.svg',
|
|
},
|
|
});
|