Last active
December 12, 2015 03:08
-
-
Save tatsuro-ueda/4704603 to your computer and use it in GitHub Desktop.
Railsのアセットパイプラインを無効にするには
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#config/application.rb | |
# Enable the asset pipeline | |
#config.assets.enabled = true | |
config.assets.enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--app/views/layouts/application.html.erb--> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>P130128CanvasExperiment2</title> | |
<%= stylesheet_link_tag "application", :media => "all" %> | |
<%= javascript_include_tag "application"%> | |
<!--added-from--> | |
<%= javascript_include_tag "jquery"%> | |
<%= javascript_include_tag "knockout-2.1.0"%> | |
<%= javascript_include_tag "ore-ore-script"%> | |
<%= javascript_include_tag params[:controller] %> | |
<!--added-to--> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> | |
<%= yield %> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment