Created
May 30, 2020 16:47
-
-
Save guillegr123/f49437c73ca27ed5d8f4cad786caccde to your computer and use it in GitHub Desktop.
phoenix_preact-4.5-webpack.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
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