fixed production xmldir
parent
76c6c14f6a
commit
f49df77601
|
|
@ -16,6 +16,7 @@
|
|||
"curly": true,
|
||||
"eofline": false,
|
||||
"forin": true,
|
||||
"type-check": true,
|
||||
"indent": [true, "spaces"],
|
||||
"interface-name": [true, "never-prefix"],
|
||||
"jsdoc-format": true,
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import glob
|
|||
import os
|
||||
|
||||
production = False if os.environ.get('NODE_ENV','') == 'development' else True
|
||||
xmlDir = 'public/' if production else 'build/'
|
||||
xmlDir = 'build/' if production else 'public/'
|
||||
|
||||
@app.route('/')
|
||||
def walle_index():
|
||||
|
|
|
|||
Loading…
Reference in New Issue