8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
|
import legacy from '@vitejs/plugin-legacy';
|
||
|
|
||
|
export const configLegacy = () => {
|
||
|
return legacy({
|
||
|
targets: ['defaults', 'not IE 11', 'chrome > 86'],
|
||
|
});
|
||
|
};
|