We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffcf920 commit cdfcf62Copy full SHA for cdfcf62
3 files changed
handlers/tutorial/tasks/edit.js
handlers/tutorial/templates/folder.pug
modules/config/index.js
@@ -43,12 +43,12 @@ let config = module.exports = {
43
44
plnkrAuthId: secret.plnkrAuthId,
45
46
- assetVersioning: env.ASSET_VERSIONING == 'file' ? 'file' :
47
- env.ASSET_VERSIONING == 'query' ? 'query' : null,
+ assetVersioning: env.ASSET_VERSIONING === 'file' ? 'file' :
+ env.ASSET_VERSIONING === 'query' ? 'query' : null,
48
49
pug: {
50
basedir: path.join(process.cwd(), 'templates'),
51
- cache: env.NODE_ENV != 'development'
+ cache: env.NODE_ENV !== 'development'
52
},
53
54
supportEmail: 'iliakan@javascript.info',
0 commit comments