Add environment variable for basePath.

pull/405/head
Mike Cao 2020-12-03 22:28:05 -08:00
parent 7e29aee798
commit e2a6bf9f94
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ module.exports = {
VERSION: pkg.version,
FORCE_SSL: !!process.env.FORCE_SSL,
},
basePath: process.env.BASE_PATH,
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
@ -28,6 +29,6 @@ module.exports = {
},
],
},
]
];
},
};