Initial commit

This commit is contained in:
sefaria
2026-05-02 12:23:55 +02:00
commit a1fbe4f1cf
25 changed files with 1555 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const path = require('path');
module.exports = {
entry: {
app: './js/app.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
clean: true,
filename: './js/app.js',
},
};