Soroush
Soroush
@tleunen, so your project contains multiple `.tsconfig` files and that's why it doesn't work?
but adding support for relative addresses still results in the same problem. the relative address has to be resolved against an absolute one and if the absolute address still changes...
I am not very familiar with the typescript plugin API, but we currently use the `ts.server.PluginCreateInfo.getCurrentDirectory()` as the base path. From your description, this returns the directory of each child's...
try removing the metadata. the right length of a file should be deduced from the file size and the block size. if it shows another number for the duration, it...
`RawSqlResultsToEntityTransformer` instance used by TypeORM should be exposed, or at least add a way to map raw update results returned via `returning` to an objects (we already have the `mappedObjects`...
the whole `__NEXT_DATA__` should be obfuscated IMO. Google has already picked up information on the redux state on our site and translation phrases for parts of the website that are...
on further tests, the following might solve your problem: ```typescript import Document, { Head, Html, Main, NextScript } from "next/document"; import React from "react"; export default class MyDocument extends Document...
what is the error? the `nextInlineScriptSource` is only used for the content of the `__next_data__` tag from what I see in the source code and the `` should be executed...
unless app router uses the same `nextInlineScriptSource` method somewhere else. in that case, we have to find a way to only obfuscate the first response (check the `props` variable and...
if anyone tried to use the code above be advised that `atob` is not friendly with Unicode chars. I had a few problems with it.