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
439 B
19 lines
439 B
import { viteMockServe } from 'vite-plugin-mock';
|
|
import { ViteEnv } from '../../utils';
|
|
|
|
export function configMockPlugin(env: ViteEnv, isBuild: boolean) {
|
|
const { VITE_USE_MOCK } = env;
|
|
|
|
const useMock = !isBuild && VITE_USE_MOCK;
|
|
|
|
if (useMock) {
|
|
const mockPlugin = viteMockServe({
|
|
ignore: /^\_/,
|
|
mockPath: 'mock',
|
|
showTime: true,
|
|
localEnabled: useMock,
|
|
});
|
|
return mockPlugin;
|
|
}
|
|
return [];
|
|
}
|
|
|