Skip to content

Commit

Permalink
Comment out unused code.
Browse files Browse the repository at this point in the history
Keeping the code as an example of PROD/TEST env detection.
  • Loading branch information
serebrov committed Nov 13, 2022
1 parent 0d80bc4 commit 077efe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ var pack = require('../package.json')
var webpack = require('webpack')
const VueLoaderPlugin = require('vue-loader/lib/plugin')

var PROD = process.env.NODE_ENV === 'production'
var TEST = process.env.NODE_ENV === 'test'
// var PROD = process.env.NODE_ENV === 'production'
// var TEST = process.env.NODE_ENV === 'test'

var config = {
entry: path.resolve('docs/index.js'),
Expand Down

0 comments on commit 077efe7

Please sign in to comment.