Tanc

Results 80 comments of Tanc

It looks like `composer install --no-dev` will only work if a composer.lock file is available: http://stackoverflow.com/questions/42375219/why-composer-install-no-dev-does-not-work

I think I'll upgrade to PHP7 ;-)

The templates directory is at `web/themes/custom/[theme_name]` but with Drupal projects they can be set up in all sorts of ways and in different locations. So I guess it would be...

Is there any chance to have the language server not crash if it can't access a file? I have some annoying permissions on some containers that I can't change for...

@kaermorchen I mean it is a docker access issue in the sense that the language server crashes when it doesn't have access to certain folders/files. But in my opinion if...

@moetelo the `[redacted]/docker-volumes/solr-data/data` contains the apache solr index data. It does not contain Twig templates and is of no interest to the extension. It would be good to be able...

@kaermorchen the simplest repro I can come up with is this: ``` mkdir twig-test cd twig-test mkdir unreadable-test sudo chown 8983:8983 unreadable-test sudo chmod 770 unreadable-test code . ``` This...

To get this working using `llama3.1` in `ollama` with a custom `api_base` you can use the `openai` method as Ollama server has an Open AI compatible API: ``` default_model =...

> Same fix works for react as a work around > > ``` > import { defineConfig } from "vite"; > import react from "@vitejs/plugin-react"; > > export default defineConfig({...