Roman
Roman
> Procedures defined with old way should not be callable through a proxy, and only with the legacy string literals I think this is a good change, migration workflow will...
Hello, I have been using the subscribe method, and now have tried your suggested method. These different ways of "subscribing" are identical network-wise. The issue I am having is that...
Since regular objects (records) can be sent in deltas, the quick and dirty fix would be to send entities as keys of an object, with empty values. Of course, that...
### Non-standard path implementation. - The standard I am talking about is [rfc6902](https://www.rfc-editor.org/rfc/rfc6920.html), example implementation [here](https://github.com/chbrown/rfc6902) Instead of `record.set('pets[1].fur.color', 'brown')` it should be `record.set('pets.1.fur.color', 'red')}`. Current way looks better for...
The issue report was for Chromium. When using Firefox, the browser does not refresh and is stuck on "Unable to connect". It looks like the browser is refreshed before Encore's...
When ace generates webpack config, the following options toward the end: ``` options.liveReload = true; options.static.push({ directory: join(__dirname, './resources/views'), watch: true, }); ``` Here is the .adonisjsrc.json ``` { "typescript":...
Ive created a repo demonstrating this behavior and my attempts at configuring sharing of code/types between server and client. You can find it [here](https://github.com/romanzy-1612/adonisjs-webpack-encore-typescript) Console output when reloading: ``` UPDATE:...
I have the same issue. In order for websockets to work the server needs to handle upgrade request, and since vite uses it for live reload, our own ws implementation...
As stated in the docs you need to put these into `defineConfig` ```javascript optimizeDeps: { // Vite does not work well with optionnal dependencies, // you can mark them as...
Put this before loading any javascript into your html file: ``` globalThis.process = { env: { NODE_ENV: 'development' } }; ``` When bundling with rollup use @rollup/plugin-replace in order to...