Skip to content

Instantly share code, notes, and snippets.

@guillegr123
Last active May 30, 2020 16:44
Show Gist options
  • Save guillegr123/d1988b24105dbd1589a26e2bbbfb02bc to your computer and use it in GitHub Desktop.
Save guillegr123/d1988b24105dbd1589a26e2bbbfb02bc to your computer and use it in GitHub Desktop.
phoenix_preact-2_aliasing
// ...
module.exports = (env, options) => {
// ...
return {
// ...
module: {
// ...
},
resolve: {
alias: {
react: 'preact/compat',
'react-dom/test-utils': 'preact/test-utils',
'react-dom': 'preact/compat'
},
},
plugins: [
// ...
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment