* feat(new tool): Regex Tester Fix https://github.com/CorentinTh/it-tools/issues/1007, https://github.com/CorentinTh/it-tools/issues/991, https://github.com/CorentinTh/it-tools/issues/936, https://github.com/CorentinTh/it-tools/issues/761, https://github.com/CorentinTh/it-tools/issues/649 https://github.com/CorentinTh/it-tools/issues/644, https://github.com/CorentinTh/it-tools/issues/554 https://github.com/CorentinTh/it-tools/issues/308 * fix: refactor to service + add regex diagram + ui enhancements * fix: update queryParams * fix: deps * fix: svg style bug in @regexper/render @regexper/render use a stylesheet in svg that cause bugs in whole site. So add regexper in a shadow root * feat(new tool): added Regex Cheatsheet * Update src/tools/regex-memo/index.ts * Update src/tools/regex-tester/index.ts --------- Co-authored-by: Corentin THOMASSET <corentin.thomasset74@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			650 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			650 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { createApp } from 'vue';
 | |
| import { createPinia } from 'pinia';
 | |
| import { createHead } from '@vueuse/head';
 | |
| 
 | |
| import { registerSW } from 'virtual:pwa-register';
 | |
| import shadow from 'vue-shadow-dom';
 | |
| import { plausible } from './plugins/plausible.plugin';
 | |
| 
 | |
| import 'virtual:uno.css';
 | |
| 
 | |
| import { naive } from './plugins/naive.plugin';
 | |
| 
 | |
| import App from './App.vue';
 | |
| import router from './router';
 | |
| import { i18nPlugin } from './plugins/i18n.plugin';
 | |
| 
 | |
| registerSW();
 | |
| 
 | |
| const app = createApp(App);
 | |
| 
 | |
| app.use(createPinia());
 | |
| app.use(createHead());
 | |
| app.use(i18nPlugin);
 | |
| app.use(router);
 | |
| app.use(naive);
 | |
| app.use(plausible);
 | |
| app.use(shadow);
 | |
| 
 | |
| app.mount('#app');
 |