体育中心营业端
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.
 
 
 

19 lines
468 B

import viteBaseConfig from './vite.base.config.js'
import viteDevConfig from './src/config/vite.dev.js'
import viteBuildConfig from './src/config/vite.build.js'
import {defineConfig} from "vite";
export default defineConfig(({mode}) => {
if (mode === "dev") {
return {
...viteBaseConfig,
...viteDevConfig,
};
} else {
return {
...viteBaseConfig,
...viteBuildConfig,
};
}
});