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

17 lines
317 B
JavaScript

const config = {
mode: 'production', // "production" | "development" | "none"
resolve: {
extensions: ['*', '.mjs', '.js', '.json'],
},
module: {
rules: [
{
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto',
},
],
},
};
exports.config = config;