fix casing for entries in webpack

This commit is contained in:
August Skare
2018-11-21 12:36:58 +01:00
parent 592e1a3e6f
commit 89ce87f9f1

View File

@@ -11,10 +11,10 @@ const pages = require('./pages');
const config = {
entry: {
compiler: './ts/pages/Compiler.tsx',
cov: './ts/pages/Cov.tsx',
profiler: './ts/pages/Profiler.tsx',
trace: './ts/pages/Trace.tsx',
compiler: './ts/pages/compiler.tsx',
cov: './ts/pages/cov.tsx',
profiler: './ts/pages/profiler.tsx',
trace: './ts/pages/trace.tsx',
},
output: {
path: path.join(__dirname, '/public'),