38 lines
1.2 KiB
JavaScript
Executable File
38 lines
1.2 KiB
JavaScript
Executable File
const path = require('path')
|
||
|
||
module.exports = {
|
||
sassOptions: {
|
||
includePaths: [path.join(__dirname, 'styles')],
|
||
},
|
||
i18n: {
|
||
locales: ['en', 'ar'],
|
||
defaultLocale: 'en',
|
||
},
|
||
|
||
webpackDevMiddleware: config => {
|
||
config.watchOptions = {
|
||
poll: 1000,
|
||
aggregateTimeout: 300,
|
||
}
|
||
return config
|
||
},
|
||
|
||
env: {
|
||
REACT_APP_US_ADDRESS_USA: '32 Oatgrass Dr, Grayson,GA,30017',
|
||
REACT_APP_US_PHONE: '(415) 251-7583',
|
||
REACT_APP_SUPPORT_EMAIL: 'support@mermsemr.com',
|
||
REACT_APP_YEAR:2023,
|
||
REACT_APP_ANDROID_URL:'https://play.google.com/store/apps/details?id=com.mermsemr.myfit',
|
||
REACT_APP_IOS_URL:'https://play.google.com/store/apps/details?id=com.mermsemr.myfit',
|
||
REACT_APP_APPSITE:'http://localhost:9050',
|
||
REACT_APP_FACEBOOK:'https://www.facebook.com/dorcastore',
|
||
REACT_APP_TWITTER: 'https://twitter.com/fluxtra',
|
||
REACT_APP_INSTAGRAM:'https://www.instagram.com/dorcastore1/',
|
||
//REACT_APP_LINKEDIN: 'https://www.linkedin.com/dorcastore1/',
|
||
// REACT_APP_BLOGSITE: 'https://www.dorcastore.com/’
|
||
},
|
||
|
||
output: 'standalone',
|
||
}
|
||
|