moved everything to webpack, migrated to bootstrap v4

This commit is contained in:
2019-05-28 22:24:12 +02:00
parent cd22be4534
commit 3f308897c9
35 changed files with 6198 additions and 478 deletions

View File

@@ -0,0 +1,6 @@
const merge = require('webpack-merge');
const baseConfig = require('./webpack.config.production.js');
module.exports = merge(baseConfig, {
devtool: 'inline-source-map'
});