Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save guillegr123/f49437c73ca27ed5d8f4cad786caccde to your computer and use it in GitHub Desktop.
Save guillegr123/f49437c73ca27ed5d8f4cad786caccde to your computer and use it in GitHub Desktop.
phoenix_preact-4.5-webpack.config.js
// ...
module.exports = (env, options) => {
// ...
return {
// ...
module: {
rules: [
{
test: /\.jsx?$/,
resolve: {
extensions: ['.js', '.jsx']
},
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
},
// ...
]
},
// ...
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment