Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created May 14, 2015 16:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonlemay/a9497279de78f8498344 to your computer and use it in GitHub Desktop.
Save jasonlemay/a9497279de78f8498344 to your computer and use it in GitHub Desktop.
Getting started with CSS (GSS) in GWT
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.7.0//EN"
"http://gwtproject.org/doctype/2.7.0/gwt-module.dtd">
<module rename-to="AppModule">
// [Inheriting some stuff]
// [Source some stuff]
// The line that you need to add
<set-configuration-property name="CssResource.enableGss" value="true">
// [Some more code extending ... thing?]
</module>
@ckuetbach
Copy link

The XML is not wellformed. It should be:

<set-configuration-property name="CssResource.enableGss" value="true" />

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment