mirror of
https://git.gay/DeltaStudio/PufokReactApp.git
synced 2025-07-17 21:32:24 +07:00
20 lines
350 B
JavaScript
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;
|