1
0
mirror of https://github.com/teoxoy/factorio-blueprint-editor.git synced 2025-11-23 22:15:01 +02:00

first commit

This commit is contained in:
Ralimist
2018-03-29 07:54:56 +02:00
commit 8206d24c7e
57 changed files with 106850 additions and 0 deletions

9
webpack.dev.js Normal file
View File

@@ -0,0 +1,9 @@
'use strict'
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = merge(common, {
mode: 'development'
// devtool: 'inline-source-map'
})