GWT 2 CssResource how to

后端 未结 2 2235
抹茶落季
抹茶落季 2021-02-07 08:29

I have a GWT 1.7 application and I want to upgrade it to GWT 2 Milestone 2. The application uses 2 big external CSS files. In GWT 1.7 I had a public folder and put both the CSS

2条回答
  •  孤街浪徒
    2021-02-07 08:44

    Try with @NotStrict. Example:

    @NotStrict
    @Source("com/web/tech/public/stylesheet1.css")
    public Css stylesheet1();
    

提交回复
热议问题