Initial commit - modstagram-next

This commit is contained in:
root
2026-07-05 13:59:41 +03:30
commit 11e73da693
859 changed files with 117640 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const path = require('path')
module.exports = {
mode: 'production',
entry: './server.js',
output: {
path: path.join(__dirname, 'dist'),
publicPath: '/',
filename: 'final.js'
},
target: 'node'
}