Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Select Git revision
  • 4390c19af69102698851a831922a257be59514af
  • master default protected
  • spike/short-live-branch-analysis
  • 1606917720-204
  • 1606862791-246
  • 1606885864-239
  • 1606875806-244
  • 1906438014-240
  • 1606833936-243
  • 1606879773-218
  • 1606886974-179-3
  • 1606823475-175
  • 1606837991-#224
  • 1506757352-241
  • 1606890933-183
  • 1606917531-210
  • 1606837915-228
  • 1606891500-233
  • 1606889591-238
  • 1606833463-217
  • 1906438115-231
21 results

pythonw.exe

Blame
  • Forked from Fasilkom UI Open Source Software / Kape
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    webpack.base.config.js 681 B
    const path = require('path');
    const BundleTracker = require('webpack-bundle-tracker');
    
    module.exports = {
      context: __dirname,
    
      entry: ['./assets/js/index'],
    
      output: {
        path: path.resolve('./assets/bundles/'),
        filename: '[name]-[hash].js',
      },
    
      plugins: [new BundleTracker({ filename: './webpack-stats.json' })],
    
      module: {
        loaders: [
          {
            test: /\.jsx?$/,
            exclude: /node_modules/,
            loader: 'babel-loader', // to transform JSX into JS
            query: {
              presets: ['react', 'env'],
            },
          },
        ],
      },
    
      resolve: {
        modules: ['node_modules', 'bower_components'],
        extensions: ['*', '.js', '.jsx'],
      },
    };