14 lines
239 B
JavaScript
Executable File
14 lines
239 B
JavaScript
Executable File
const path = require('path')
|
|
|
|
module.exports = {
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, 'styles')],
|
|
},
|
|
i18n: {
|
|
locales: ['en', 'ar'],
|
|
defaultLocale: 'en',
|
|
},
|
|
output: 'standalone',
|
|
}
|
|
|