feat: sync redux to localstorage

This commit is contained in:
Joshua Seigler 2020-02-19 02:00:21 -05:00
parent 9242ce66ec
commit ff4a941dd8
10 changed files with 230 additions and 149 deletions

9
next.config.js Normal file
View file

@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
webpack(config, options) {
config.resolve.alias['components'] = path.join(__dirname, 'components')
config.resolve.alias['lib'] = path.join(__dirname, 'lib')
return config
},
};