mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-21 20:48:00 +01:00
0c2b46dd20
This reverts commit1a77341ce2
, reversing changes made tod01b24a91f
.
12 lines
320 B
JavaScript
12 lines
320 B
JavaScript
var path = require('path');
|
|
var webpack = require('webpack');
|
|
var _ = require('underscore');
|
|
|
|
var webpackBaseConfig = require('./webpack.base.config.js');
|
|
var config = _.clone(webpackBaseConfig);
|
|
|
|
config.devtool = 'eval-source-map';
|
|
config.output.publicPath = 'http://localhost:61999/build/';
|
|
|
|
|
|
module.exports = config;
|