2016-12-27 18:58:10 +00:00
|
|
|
module.exports = {
|
|
|
|
webpack: function (config) {
|
|
|
|
config.resolve.alias = {
|
2017-01-13 14:40:07 +00:00
|
|
|
'react': 'preact-compat/dist/preact-compat',
|
|
|
|
'react-dom': 'preact-compat/dist/preact-compat'
|
2016-12-27 18:58:10 +00:00
|
|
|
}
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
}
|