fix: temp frontend (#230)

* v.0.0.9 staging

* fix: temp frontend deployment bug
This commit is contained in:
Vivian Phung 2024-06-25 01:04:03 -04:00 committed by GitHub
parent 94f46f9621
commit 8a2b51952f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,13 +13,12 @@ export default defineConfig({
context: '/src/context', context: '/src/context',
components: '/src/components', components: '/src/components',
pages: '/src/pages', pages: '/src/pages',
types: '/src/types',
}, },
}, },
define: { define: {
'process.env': {}, 'process.env': {},
__VERSION__: JSON.stringify( // __VERSION__: JSON.stringify(
(await promisify(exec)('git rev-parse --short HEAD')).stdout.trim(), // (await promisify(exec)('git rev-parse --short HEAD')).stdout.trim(),
), // ),
}, },
}); });