在 Grails 2.0.1 中集成 Bootstrap
Integrating Bootstrap in Grails 2.0.1
我尝试将 bootstrap 集成到 grails 中。我遵循了官方文档。 https://github.com/groovydev/twitter-bootstrap-grails-plugin/blob/master/README.md
我在 BuildConfig.groovy
中添加了这个
runtime ':twitter-bootstrap:3.3.5'
根据文档下一步是添加:
Javascript grails-app/assets/javascripts/application.js:
//= require bootstrap
console.log("My javascript goes here");
Stylesheet grails-app/assets/javascripts/application.css:
/*
*= require bootstrap
*/
但是我没有
"grails-app/assets/javascripts/"
我也试过添加
compile ":twitter-bootstrap:3.3.4"
和
compile ":twitter-bootstrap:3.3.5"
但也没有用。
可能您没有使用 asset-pipeline 插件。在 grails2 的第一个版本中默认是资源插件。
我尝试将 bootstrap 集成到 grails 中。我遵循了官方文档。 https://github.com/groovydev/twitter-bootstrap-grails-plugin/blob/master/README.md
我在 BuildConfig.groovy
中添加了这个 runtime ':twitter-bootstrap:3.3.5'
根据文档下一步是添加:
Javascript grails-app/assets/javascripts/application.js:
//= require bootstrap
console.log("My javascript goes here");
Stylesheet grails-app/assets/javascripts/application.css:
/*
*= require bootstrap
*/
但是我没有
"grails-app/assets/javascripts/"
我也试过添加
compile ":twitter-bootstrap:3.3.4"
和
compile ":twitter-bootstrap:3.3.5"
但也没有用。
可能您没有使用 asset-pipeline 插件。在 grails2 的第一个版本中默认是资源插件。