mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-10 19:11:01 +00:00
20 lines
372 B
JavaScript
20 lines
372 B
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
|
|
module.exports = {
|
|
mode: 'production',
|
|
entry: {
|
|
server: './index.js',
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, 'build'),
|
|
filename: 'index.js'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
}
|
|
}; |