Explorar el Código

fix webpack prod build setup

Alexander Rose hace 5 años
padre
commit
0f758cf554
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      webpack.config.production.js

+ 1 - 2
webpack.config.production.js

@@ -1,9 +1,8 @@
 const { createApp, createExample } = require('./webpack.config.common.js');
 
-const apps = ['viewer'];
 const examples = ['proteopedia-wrapper', 'basic-wrapper', 'lighting'];
 
 module.exports = [
-    ...apps.map(createApp),
+    createApp('viewer', 'molstar'),
     ...examples.map(createExample)
 ]