1
1
mirror of https://git.gay/DeltaStudio/PufokReactApp.git synced 2025-07-17 21:32:24 +07:00
PufokReactAppMirror/webpack.config.js
2025-02-18 00:35:40 +03:00

20 lines
350 B
JavaScript

const config = {
mode: 'production', // "production" | "development" | "none"
resolve: {
extensions: ['*', '.mjs', '.js', '.json'],
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
],
},
};
module.exports = config;