mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
/**
|
|
* @name ConfigRestartPlugin
|
|
* @description 监听配置文件修改自动重启Vite
|
|
*/
|
|
import ViteRestart from 'vite-plugin-restart';
|
|
export const ConfigRestartPlugin = () => {
|
|
return ViteRestart({
|
|
restart: ['*.config.[jt]s', '**/config/*.[jt]s'],
|
|
});
|
|
};
|