forked from sproutit/sproutcore-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuildfile
23 lines (19 loc) · 762 Bytes
/
Buildfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ===========================================================================
# Project: SproutWeb
# Copyright: ©2009 My Company, Inc.
# ===========================================================================
# Common build options for all pages goes here
config :all,
:required => [:sproutcore, :shared_assets],
:layout => 'shared_assets:index.rhtml',
:favicon => 'favicon' # named asset
# shared_assets should not require itself
config :shared_assets, :required => [:sproutcore]
mode :debug do
config :all, :combine_stylesheets => false
end
# Production builds should reference the domain explicitly. This way blogs
# and external templates work
mode :production do
config :all, :url_prefix => 'http://www.sproutcore.com/static'
end