mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-03-26 10:21:54 +00:00
9 lines
181 B
JavaScript
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'
|
|
}
|
|
}; |