Config and build files

This commit is contained in:
2019-01-07 23:15:21 +01:00
parent 2ba4b2e5a8
commit 6967541ba1
12 changed files with 702 additions and 0 deletions

7
config/dev.env.js Normal file
View File

@@ -0,0 +1,7 @@
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})