vaadin / copilot

0 stars 0 forks source link

[BUG] Excluding copilot does not actually exclude copilot #9

Closed Artur- closed 5 months ago

Artur- commented 5 months ago

Description of the Bug

With a new Vaadin project, you should be able to exclude copilot as

        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>com.vaadin</groupId>
                    <artifactId>copilot</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

But if you do and press shift-shift, copilot still pops up

Versions

Artur- commented 5 months ago

This is probably related to the default dev bundle being used and it not being rebuilt when copilot is excluded. You will get error messages in the server console if you exclude it this way because the server part of copilot is excluded even though the browser part is loaded