16 lines
314 B
Markdown
16 lines
314 B
Markdown
# Overview
|
|
|
|
In your project's Gruntfile, add a section named `jst` to the data object passed into `grunt.initConfig()`.
|
|
|
|
```js
|
|
grunt.initConfig({
|
|
jst: {
|
|
options: {
|
|
// Task-specific options go here.
|
|
},
|
|
your_target: {
|
|
// Target-specific file lists and/or options go here.
|
|
},
|
|
},
|
|
})
|
|
``` |