mirror of
https://github.com/OpenGeoscience/geojs.git
synced 2025-12-08 19:56:22 +00:00
9 lines
242 B
JavaScript
9 lines
242 B
JavaScript
var path = require('path');
|
|
|
|
var config = require('./webpack-tutorials.config.js');
|
|
|
|
config.entry.bundle = './tutorials/index-website.js';
|
|
config.output.path = path.join(__dirname, 'website', 'source', 'tutorials');
|
|
|
|
module.exports = config;
|