Added classifer analysis to bicorder ascii and web app
This commit is contained in:
@@ -9,6 +9,11 @@ const bicorderData = JSON.parse(
|
||||
fs.readFileSync(path.resolve(__dirname, '../bicorder.json'), 'utf-8')
|
||||
)
|
||||
|
||||
// Read bicorder_model.json at build time
|
||||
const bicorderModel = JSON.parse(
|
||||
fs.readFileSync(path.resolve(__dirname, '../analysis/bicorder_model.json'), 'utf-8')
|
||||
)
|
||||
|
||||
export default defineConfig({
|
||||
base: './',
|
||||
plugins: [
|
||||
@@ -62,6 +67,7 @@ export default defineConfig({
|
||||
})
|
||||
],
|
||||
define: {
|
||||
'__BICORDER_DATA__': JSON.stringify(bicorderData)
|
||||
'__BICORDER_DATA__': JSON.stringify(bicorderData),
|
||||
'__BICORDER_MODEL__': JSON.stringify(bicorderModel)
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user