NicolasV
11/10/2024, 9:03 PMconfig.devServer = {
historyApiFallback: true,
// ... other devServer configurations ...
};
2. How can I add a secured key that can be used by the wasm project ? For Android I use "local.properties", but I don't find a way to use it in the web part...Arkadii Ivanov
11/10/2024, 9:26 PMNicolasV
11/10/2024, 9:36 PMconfig.devServer = {
...config.devServer, // Preserve existing settings
historyApiFallback: true,
port: 9000, // Change the port
// Add other custom devServer options
};
I guess the file is not used by webpack. If it could be used correctly maybe I could even have a solution for my second issue.