0.0.32 • Published 6 years ago

quantumpack v0.0.32

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago
// quantumpack.js

import quantumpack from 'quantumpack'

export default quantumpack({
  paths: {
    appPath: './src/entry.js',
  },
  env: {
    SHOW_DEBUG: true,
  },
  webpack: config => {
    config.entry = ['src/random.js', ...config.entry];

    return config;
  }
})