Closed Mason-McGough closed 9 months ago
add this entire block to demo/configs/webpack/common.js
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
},
Adding a 'rules' block in demo/configs/webpack/dev.js
worked for me.
module.exports = merge(commonConfig, { // Find this line in dev.js
module: {
rules: [ // Add this block
{ resolve: {
fullySpecified: false,
}
}
]
.....
Thank you! Works for me.
add this entire block to
demo/configs/webpack/common.js
{ test: /\.m?js/, resolve: { fullySpecified: false } },
works for me. Thanks!
Hello, thanks for the great work. I can start the demo using the "Run the app" section of
demo.README.md
but I receive the following error when the page loads:In
App.tsx
, the following files exist. I used the same model to generate the embedding.Node: v21.6.1 Webpack: 5.90.0
Full output: