feat: analytic

This commit is contained in:
ferdiansyah783
2025-08-08 17:59:39 +07:00
parent 7beee4c3a1
commit 67b747f0ff
34 changed files with 1227 additions and 2834 deletions
+3 -1
View File
@@ -4,12 +4,14 @@ import { configureStore } from '@reduxjs/toolkit'
import productReducer from '@/redux-store/slices/product'
import customerReducer from '@/redux-store/slices/customer'
import paymentMethodReducer from '@/redux-store/slices/paymentMethod'
import ingredientReducer from '@/redux-store/slices/ingredient'
export const store = configureStore({
reducer: {
productReducer,
customerReducer,
paymentMethodReducer
paymentMethodReducer,
ingredientReducer
},
middleware: getDefaultMiddleware => getDefaultMiddleware({ serializableCheck: false })
})