first commit?

This commit is contained in:
Spencer Flagg
2022-07-19 16:25:29 +02:00
commit c669ef8409
133 changed files with 10400 additions and 0 deletions

9
webpack.config.js Normal file
View File

@@ -0,0 +1,9 @@
const path = require('path');
module.exports = {
entry: '/src/assets/js/main.js',
output: {
path: path.resolve(__dirname, '_site/assets/js'),
filename: 'main.js'
}
};