1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-website/webpack.config.js

11 lines
207 B
JavaScript
Raw Normal View History

2020-10-15 18:37:10 +00:00
const path = require('path')
module.exports = {
2020-10-15 20:00:15 +00:00
entry: './src/assets/index.js',
2020-10-15 18:37:10 +00:00
output: {
path: path.resolve(__dirname, 'public/assets'),
publicPath: '/assets/',
filename: 'site.js',
},
}