Files
start9.com/webpack.config.js
Spencer Flagg c669ef8409 first commit?
2022-07-19 16:25:29 +02:00

9 lines
181 B
JavaScript

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