* refactor: use fastify vite for the server by doing this we do not need to have local hacks for the routes. No local proxy needed. Everything just works. * fix: update the dockerfile build path * fix: update package.json * fix: fonts path
7 lines
159 B
JavaScript
7 lines
159 B
JavaScript
import { createStore } from 'redux';
|
|
import rootReducer from '../reducers';
|
|
|
|
export default function configureStore() {
|
|
return createStore(rootReducer);
|
|
}
|