1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-13 16:49:07 +00:00
bramw_baserow/old-web-frontend/webpack/config.js

17 lines
457 B
JavaScript
Executable file

const path = require('path');
const config = {
'entry': path.join(__dirname, '../src'),
'output': path.join(__dirname, '../public'),
'dist': path.join(__dirname, '../_build'),
'host': '0.0.0.0',
'port': 8080,
'jsFilename': './baserow.js',
'cssFilename': './baserow.css',
'sourceMaps': true,
'devtool': 'inline-source-map',
'pages': ['index.html', 'login.html', 'grid.html', 'grid-s.html']
};
// Export config
module.exports = config;