chat-with-gpt/app/craco.config.js

36 lines
607 B
JavaScript
Raw Normal View History

2023-03-14 11:00:40 +00:00
const cracoWasm = require("craco-wasm");
/*
{
"plugins": [
[
"formatjs",
{
"idInterpolationPattern": "[sha512:contenthash:base64:6]",
"ast": true
}
]
]
}
*/
module.exports = {
plugins: [
cracoWasm(),
],
eslint: {
enable: false
},
babel: {
plugins: [
[
'formatjs',
{
removeDefaultMessage: false,
idInterpolationPattern: '[sha512:contenthash:base64:6]',
ast: true
}
]
]
}
}