|
|
@@ -1,6 +1,8 @@
|
|
|
import { defineConfig } from 'vite'
|
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
+// @ts-ignore
|
|
|
+import { progressTrackingPlugin} from './vite-plugin-compile-progress.js';
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
export default defineConfig({
|
|
|
@@ -9,6 +11,7 @@ export default defineConfig({
|
|
|
tsDecorators: true,
|
|
|
}),
|
|
|
tailwindcss(),
|
|
|
+ progressTrackingPlugin(),
|
|
|
],
|
|
|
server: {
|
|
|
allowedHosts:true
|