- Replaced broken .NET backend with Node.js/Express - Restored original website design with purple gradient hero - Updated homepage and shop pages with Bootstrap 5 responsive design - Disabled GitHub remote sync - all code now stored locally only - Created backup scripts and documentation - All changes saved on Ubuntu server at /var/www/SkyArtShop
26 lines
560 B
Python
26 lines
560 B
Python
{
|
|
'defines': [ 'NAPI_CPP_EXCEPTIONS' ],
|
|
'cflags!': [ '-fno-exceptions' ],
|
|
'cflags_cc!': [ '-fno-exceptions' ],
|
|
'conditions': [
|
|
["OS=='win'", {
|
|
"defines": [
|
|
"_HAS_EXCEPTIONS=1"
|
|
],
|
|
"msvs_settings": {
|
|
"VCCLCompilerTool": {
|
|
"ExceptionHandling": 1,
|
|
'EnablePREfast': 'true',
|
|
},
|
|
},
|
|
}],
|
|
["OS=='mac'", {
|
|
'xcode_settings': {
|
|
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
|
|
'CLANG_CXX_LIBRARY': 'libc++',
|
|
'MACOSX_DEPLOYMENT_TARGET': '10.7',
|
|
},
|
|
}],
|
|
],
|
|
}
|