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