Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 610 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 610 Bytes

Aphrodite Todomvc Example

Most of this code was lifted from TJ's Frontend Boilerplate. I replaced CSS Modules with Aphrodite inline styles. I also added a build step which creates a static version of the app and inlines the Aphrodite styles into the html.

Development

npm start

Production Build and Run

The following commands will build the app to static/ with the aphrodite styles dehydrated and included inline in the html, and run it:

npm run build
cd static/
python -m SimpleHTTPServer 3001